/**
 * Miami Cash for Gold — Logo palette: black, neon cyan, hot pink, gold
 */

:root {
  --theme-color: #ff00ff;
  --neon-pink: #ff00ff;
  --neon-cyan: #00ffff;
  --pink-color: #ff00ff;
  --gold-color: #ffd700;
  --gold-light: #ffec8b;
  --gold-dark: #c9a020;
  --silver-color: #c0c0c0;
  --theme-color-rgb: 255, 0, 255;
  --gold-color-rgb: 255, 215, 0;
  --cyan-color-rgb: 0, 255, 255;
  --glow-pink: 0 0 10px rgba(255, 0, 255, 0.65), 0 0 22px rgba(255, 0, 255, 0.35);
  --glow-cyan: 0 0 10px rgba(0, 255, 255, 0.65), 0 0 22px rgba(0, 255, 255, 0.35);
  --glow-gold: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 18px rgba(255, 215, 0, 0.25);
  --title-font: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --special-font: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --display-font: "Kanit", "Oswald", sans-serif;
  --body-font: "Montserrat", "Segoe UI", Roboto, sans-serif;
}

/* Prevent horizontal scroll (100vw on .main includes scrollbar width) */
html {
  overflow-x: clip;
  max-width: 100%;
}

body.vs-body,
body.vs-body2 {
  overflow-x: clip;
  max-width: 100%;
}

.main {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe {
  max-width: 100%;
}

/* ── Typography: modern, readable, luxury ── */
body,
.vs-body,
.vs-body2 {
  background-color: #000000;
  color: #ececec;
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.sec-title,
.breadcumb-title,
.hero-main .hero-title,
.view-title,
.view-title2,
.product-title,
.feature-style__title,
.footer-title,
.widget_title {
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-menu a,
.vs-mobile-menu a,
.nav-link,
.breadcumb-menu,
.product-cart,
.view-link {
  font-family: var(--title-font);
}

.vs-btn,
.sec-subtitle,
.wc-link {
  font-family: var(--title-font);
}

.main-menu a {
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.vs-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.sec-subtitle {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.sec-text,
.sec-text2,
.feature-style__text,
p,
.accordion-body {
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.75;
  color: #d6d6d6;
}

.hero-main .hero-title {
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-main .hero-title .htext1 {
  font-family: var(--display-font);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-main .hero-title .htext2,
.hero-main .hero-title .highlight {
  font-family: var(--title-font);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
}

.hero-main.style3 .hero-title {
  font-size: clamp(52px, 7vw, 108px);
}

.hero-main .hero-subtitle,
.hero-main .hero-subtitle .htext3 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.sec-title.text-white,
.sec-title {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.breadcumb-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.breadcumb-menu a:hover {
  color: var(--neon-cyan);
}

/* Inner page breadcrumb hero — breadcumb-bg-1.jpg with dark overlay */
.breadcumb-wrapper {
  background-color: #000000;
}

.breadcumb-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.breadcumb-wrapper .container {
  position: relative;
  z-index: 2;
}

.breadcumb-title {
  color: #ffffff;
  text-shadow: var(--glow-gold), 0 2px 18px rgba(0, 0, 0, 0.95);
}

.breadcumb-menu li {
  color: var(--neon-cyan);
}

.breadcumb-menu a {
  color: var(--gold-color);
}

.breadcumb-menu a:hover {
  color: var(--pink-color);
  text-shadow: var(--glow-pink);
}

/* Same-Day Cash — readable text over bright background photo */
.deal-section {
  position: relative;
  background-color: #000000;
}

@media (min-width: 992px) {
  .deal-section {
    min-height: 680px;
  }
}

.deal-section .overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.82) 38%,
    rgba(0, 0, 0, 0.52) 62%,
    rgba(0, 0, 0, 0.28) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.deal-section .container {
  position: relative;
  z-index: 2;
}

.deal-section .img-box6 {
  z-index: 2;
}

.deal-section .deal-content {
  position: relative;
  z-index: 3;
}

.deal-section .deal-content .sec-title {
  color: #ffffff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.65);
}

.deal-section .deal-content .sec-subtitle {
  text-shadow: var(--glow-cyan), 0 2px 12px rgba(0, 0, 0, 0.95);
}

.deal-section .deal-content .sec-text2 {
  color: #e8e8e8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.deal-section .img-box6 .img-content {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(92%, 260px);
  bottom: 40px;
}

.deal-section .img-box6 .img-offer--phone {
  display: block;
  width: 100%;
  border: 2px solid var(--gold-color);
  font-family: var(--title-font);
  font-size: clamp(16px, 1.65vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  color: #000000;
  background-color: var(--gold-color);
  box-shadow: var(--glow-gold);
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.deal-section .img-box6 .img-offer--phone:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
  color: #000000;
}

.deal-section .img-box6 .img-offer__number {
  display: block;
  padding: 14px 12px;
  white-space: nowrap;
}

.deal-section .img-box6 .img-content h3 {
  color: var(--gold-color);
  font-family: var(--title-font);
  letter-spacing: 0.28em;
}

@media (max-width: 1199px) {
  .deal-section .img-box6 .img-content {
    width: min(94%, 240px);
  }

  .deal-section .img-box6 .img-offer--phone {
    font-size: clamp(15px, 2vw, 20px);
  }
}

@media (max-width: 991px) {
  .deal-section {
    min-height: 0;
  }

  .deal-section .overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.82) 42%,
      rgba(0, 0, 0, 0.94) 100%
    );
  }

  .deal-section .img-box6 {
    min-height: 480px;
  }

  .deal-section .img-box6 .img1 {
    min-height: 480px;
  }
}

/* Hero — white canvas with image slides */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-cinematic__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-cinematic__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.88) 32%,
    rgba(255, 255, 255, 0.45) 55%,
    rgba(255, 255, 255, 0.08) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-cinematic__video,
.hero-cinematic__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cinematic__video {
  object-fit: cover;
  z-index: 1;
}

.hero-cinematic__frame {
  background-color: #ffffff;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  z-index: 1;
}

.hero-cinematic__frame.is-active {
  opacity: 1;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.hero-cinematic__frame--1.is-active {
  animation-name: heroKenBurns1;
}

.hero-cinematic__frame--2.is-active {
  animation-name: heroKenBurns2;
}

.hero-cinematic__frame--3.is-active {
  animation-name: heroKenBurns3;
}

@keyframes heroKenBurns1 {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes heroKenBurns2 {
  from {
    transform: scale(1.08) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(1.5%, -1.5%, 0);
  }
}

@keyframes heroKenBurns3 {
  from {
    transform: scale(1.04) translate3d(1%, -1%, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1%, 1%, 0);
  }
}

.hero-cinematic__content {
  position: relative;
  z-index: 3;
}

/* Fix template slideinup — ends without opacity:1; other slides never animate in */
.hero-cinematic.animate-elements .hero-title .htext1,
.hero-cinematic.animate-elements .hero-title .htext2,
.hero-cinematic.animate-elements .hero-subtitle,
.hero-cinematic.animate-elements .hero-subtitle .htext3,
.hero-cinematic.animate-elements .hbtn1 {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.hero-cinematic .hero-layout2 .slick-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 4;
}

.hero-cinematic .hero-layout2 .slick-dots button {
  background-color: #cccccc;
}

.hero-cinematic .hero-layout2 .slick-dots .slick-active button {
  background-color: var(--pink-color);
}

.hero-main.hero-cinematic__panel {
  background: transparent !important;
  min-height: clamp(440px, 72vh, 820px);
}

@media (max-width: 767px) {
  .hero-main.hero-cinematic__panel {
    min-height: 0 !important;
    height: auto !important;
  }
}

.hero-main.style3::before {
  display: none;
}

.hero-main.style3 .container {
  position: relative;
  z-index: 5;
}

.hero-main.style3 .hero-content {
  position: relative;
  z-index: 6;
  max-width: 42rem;
}

/* Hero text — high contrast on white slider background */
.hero-cinematic .hero-main .hero-title,
.hero-cinematic .hero-main .hero-title .htext1 {
  color: #0a0a0a;
  text-shadow: none;
}

.hero-cinematic .hero-main .hero-title .highlight,
.hero-cinematic .hero-main .hero-title .htext2 {
  color: var(--gold-dark);
  text-shadow: none;
}

.hero-cinematic .hero-main.style3 .hero-subtitle,
.hero-cinematic .hero-main.style3 .hero-subtitle .htext3,
.hero-cinematic .hero-main .hero-subtitle,
.hero-cinematic .hero-main .hero-subtitle .htext3 {
  color: #2a2a2a;
  text-shadow: none;
}

.hero-main .hbtn1 {
  position: relative;
  z-index: 6;
  overflow: visible;
}

/* Hero CTA — neon pink with cyan border glow */
.hero-main.style3 .vs-btn,
.hero-main .hbtn1 .vs-btn {
  background: linear-gradient(135deg, #ff00ff 0%, #cc00cc 45%, #990099 100%);
  color: #ffffff;
  border: 2px solid var(--neon-cyan);
  border-radius: 8px;
  box-shadow: var(--glow-pink), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 2;
}

.hero-main.style3 .vs-btn::before,
.hero-main.style3 .vs-btn::after,
.hero-main .hbtn1 .vs-btn::before,
.hero-main .hbtn1 .vs-btn::after {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #0099cc 100%);
  z-index: -1;
}

.hero-main.style3 .vs-btn:hover,
.hero-main .hbtn1 .vs-btn:hover {
  background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
  color: #000000;
  border-color: var(--pink-color);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* Header logo */
.header-logo .logo,
.header-logo img,
.mobile-logo .logo,
.mobile-logo img,
.sidemenu-logo .logo,
.sidemenu-logo img {
  max-width: 250px;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-logo img {
  max-width: 200px;
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.header-logo.style3 {
  padding: 20px 0;
}

@media (max-width: 1199px) {
  .header-logo.style3 {
    padding: 16px 0 8px;
  }

  .header-logo .logo,
  .header-logo img {
    max-width: 200px;
    max-height: 200px;
  }
}

@media (max-width: 767px) {
  .header-logo .logo,
  .header-logo img,
  .mobile-logo .logo {
    max-width: 180px;
    max-height: 180px;
  }
}

/* Headings */
.sec-title:not(.text-white) {
  color: var(--gold-color);
}

.icon-box__title,
.feature-style__title,
.call-box__title {
  color: var(--gold-color);
}

.header-wc .wc-link:hover {
  color: var(--gold-color);
  text-shadow: var(--glow-gold);
}

/* ── Desktop main menu ── */
@media (min-width: 992px) {
  .vs-header .main-menu > ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .vs-header.layout3 .header-home__nav-left .main-menu > ul {
    justify-content: flex-start;
  }

  .vs-header.layout3 .header-home__nav-right .main-menu > ul {
    justify-content: flex-end;
  }

  .vs-header.layout3 .main-menu--centered > ul {
    flex-wrap: wrap;
    row-gap: 0.15rem;
  }

  .vs-header.layout3 .menu-style1 > ul > li > a,
  .vs-header.layout1 .menu-style1 > ul > li > a {
    padding: 1.15rem 0.75rem;
    color: #ffffff;
    font-size: clamp(15px, 1.05vw, 17px);
    letter-spacing: 0.08em;
    line-height: 1.35;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .vs-header.layout3 .menu-style1 > ul > li > a::before,
  .vs-header.layout1 .menu-style1 > ul > li > a::before {
    color: rgba(0, 255, 255, 0.35);
    right: -2px;
  }

  .vs-header .main-menu > ul > li {
    margin: 0;
  }

  .vs-header .main-menu a:hover,
  .vs-header .main-menu a.active {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
  }

  .vs-header.layout3 .header-home__nav-left .menu-style1 > ul > li:first-child > a,
  .vs-header.layout3 .header-home__nav-right .menu-style1 > ul > li:first-child > a {
    padding-left: 0;
  }

  .vs-header.layout3 .header-home__nav-right .menu-style1 > ul > li:last-child > a {
    padding-right: 0;
  }

  .vs-header.layout3 .main-menu--centered > ul > li > a {
    padding: 0.85rem 0.55rem;
    font-size: clamp(14px, 1.15vw, 16px);
  }

  .vs-header.layout3 .header-home__nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
  }

  .vs-header.layout3 .header-wc--desktop {
    gap: 0.65rem;
    margin-top: 0.15rem;
  }

  .vs-header.layout3 .header-wc--desktop .header-call-btn,
  .vs-header.layout3 .header-wc--desktop .header-quote-btn {
    padding: 0.75rem 1.1rem;
    font-size: 11px;
    min-height: auto;
  }

  .vs-header.layout1 .header-inner .main-menu > ul > li > a {
    padding: 1.5rem 0.55rem;
  }

  .vs-header.layout1 .header-wc .header-quote-btn {
    padding: 0.75rem 1rem;
    font-size: 11px;
    min-height: auto;
  }
}

@media (min-width: 1200px) {
  .vs-header.layout3 .menu-style1 > ul > li > a,
  .vs-header.layout1 .menu-style1 > ul > li > a {
    padding: 1.35rem 0.85rem;
    font-size: clamp(16px, 1.1vw, 18px);
  }

  .vs-header.layout3 .main-menu--centered > ul > li > a {
    font-size: clamp(15px, 1.05vw, 17px);
    padding: 0.9rem 0.65rem;
  }

  .vs-header.layout3 .header-home__nav-tablet-row {
    display: none !important;
  }

  .vs-header.layout3 .header-logo.style3 .logo,
  .vs-header.layout3 .header-logo.style3 img {
    max-width: 220px;
    max-height: 120px;
  }

  .vs-header.layout3 .header-home__top {
    align-items: center;
  }
}

@media (min-width: 1400px) {
  .vs-header .menu-style1 > ul > li > a {
    font-size: 18px;
    letter-spacing: 0.07em;
  }

  .vs-header.layout3 .main-menu--centered > ul > li > a {
    font-size: 17px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .vs-header.layout3 .header-home__top {
    padding-bottom: 0.35rem;
  }

  .vs-header.layout3 .header-home__cta-tablet {
    padding: 0.35rem 0 0.5rem;
  }

  .vs-header.layout3 .main-menu--centered {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.15rem;
  }
}

/* ── Fancy neon buttons ── */
.vs-btn,
.header-call-btn,
.footer-call-btn,
.mobile-call-bar__btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

.vs-btn::before,
.vs-btn::after {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #0099cc 100%);
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.vs-btn {
  background: linear-gradient(135deg, #ff00ff 0%, #cc00cc 45%, #990099 100%);
  color: #ffffff;
  border: 2px solid rgba(0, 255, 255, 0.55);
  box-shadow:
    var(--glow-pink),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.vs-btn:hover {
  color: #000000;
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.vs-btn > i,
.vs-btn > span,
.header-call-btn > i,
.header-call-btn > span {
  position: relative;
  z-index: 2;
}

.vs-btn:focus-visible,
.header-call-btn:focus-visible,
.mobile-call-bar__btn:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

.vs-btn:active {
  transform: translateY(0) scale(0.98);
}

.vs-btn.style4,
.header-quote-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 2px solid var(--gold-color);
  color: var(--gold-color);
  box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255, 215, 0, 0.12);
}

.vs-btn.style4::before,
.vs-btn.style4::after,
.header-quote-btn::before,
.header-quote-btn::after {
  background: linear-gradient(135deg, var(--gold-color) 0%, #ffec8b 100%);
}

.vs-btn.style4:hover,
.header-quote-btn:hover {
  color: #000000;
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.vs-btn.style5 {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
  border: 2px solid var(--neon-cyan);
  color: #ffffff;
  box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(0, 255, 255, 0.1);
}

.vs-btn.style5:hover {
  background: linear-gradient(135deg, #ff00ff 0%, #cc00cc 100%);
  border-color: var(--pink-color);
  box-shadow: var(--glow-pink);
}

.header-call-btn,
.footer-call-btn,
.mobile-call-bar__btn,
.mobile-menu-call {
  background: linear-gradient(135deg, #ff00ff 0%, #b300b3 50%, #800080 100%);
  border: 2px solid rgba(0, 255, 255, 0.65);
  color: #ffffff;
  box-shadow: var(--glow-pink), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header-call-btn,
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.header-call-btn .fa-phone,
.vs-btn .fa-phone {
  font-size: 0.95em;
}

.header-call-btn:hover,
.footer-call-btn:hover,
.mobile-call-bar__btn:hover,
.mobile-menu-call:hover {
  background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
  border-color: var(--pink-color);
  color: #000000;
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.cta-quote-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-color);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}

.cta-quote-link:hover {
  color: var(--neon-cyan);
}

/* Header / nav — logo-style neon border */
.vs-header,
.header-sticky.navbars,
.navbars {
  background-color: #000000;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--neon-cyan), var(--pink-color), var(--neon-cyan)) 1;
}

.main-menu a:hover,
.main-menu a.active,
.vs-mobile-menu a:hover,
.vs-mobile-menu a.active {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.header-wc .wc-link:hover {
  color: var(--gold-color);
  text-shadow: var(--glow-gold);
}

/* Footer */
.footer-layout2 {
  background-color: #000000;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--pink-color), var(--neon-cyan), var(--pink-color)) 1;
}

.footer-title,
.footer-title span {
  color: var(--gold-color);
}

.footer-title span {
  color: var(--neon-cyan);
}

.footer-menu2 a:hover,
.footer-info a:hover {
  color: var(--neon-cyan);
}

.social-style a:hover {
  background-color: var(--pink-color);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-pink);
}

/* Forms */
.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 0.15rem rgba(0, 255, 255, 0.25), var(--glow-cyan);
}

/* Accordion / FAQ */
.accordion-button:not(.collapsed) {
  color: var(--gold-color);
  background-color: rgba(255, 215, 0, 0.06);
}

.accordion-button:focus {
  border-color: var(--pink-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 255, 0.2);
}

/* Blog */
.blog-title a:hover,
.blog-link:hover,
.blog-meta a:hover {
  color: var(--neon-cyan);
}

.blog-link svg path {
  fill: var(--pink-color);
}

/* Testimonials */
.testi-user {
  color: var(--gold-color);
  text-shadow: var(--glow-gold);
}

/* Feature cards */
.feature-style {
  border: 1px solid rgba(0, 255, 255, 0.15);
  background: linear-gradient(145deg, #0d0d0d 0%, #000000 100%);
}

.services-grid .service-card--grid.feature-style {
  text-align: left;
  transition: border-color 0.45s var(--ease-apple), box-shadow 0.45s var(--ease-apple);
}

.services-grid .service-card--grid:hover {
  transform: none;
}

.services-grid .service-card--grid .service-card__img {
  transition: opacity 0.6s var(--ease-apple);
}

.services-grid .service-card--grid:hover .service-card__img {
  transform: none;
}

.services-cta__text {
  max-width: 36rem;
}

.services-cta__phone {
  color: var(--gold-color);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.services-cta__phone:hover {
  color: var(--neon-cyan);
}

.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
}

/* Homepage — Our Top Services carousel */
.h2section-layout1 {
  position: relative;
}

@media (max-width: 991px) {
  .h2section-layout1 {
    overflow-x: clip;
    overflow-x: hidden;
  }

  .h2section-layout1 .container {
    overflow-x: clip;
    overflow-x: hidden;
    max-width: 100%;
  }

  .product-carousel2.row.slick-initialized,
  .product-carousel2.row {
    --bs-gutter-x: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .product-carousel2 .slick-list {
    overflow: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-carousel2 .slick-track {
    min-width: 0;
  }

  .product-carousel2 .slick-slide {
    height: auto;
  }

  .product-carousel2 .slick-slide > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-left: 6px;
    padding-right: 6px;
  }

  .service-card--carousel.product-style2.version2 {
    overflow: hidden;
    max-width: 100%;
    min-height: 0;
    margin-bottom: 12px;
    padding-bottom: 20px;
  }

  .service-card--carousel .product-img,
  .service-card--carousel .service-card__media {
    padding: 20px 0 12px;
    overflow: hidden;
    max-width: 100%;
  }

  .service-card--carousel .service-card__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .service-card--carousel.reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .h2section-layout1 .container {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .product-carousel2 .slick-slide > [class*="col-"] {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* Services page — grid + CTA */
@media (max-width: 767px) {
  .services-grid {
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
  }

  .services-cta__phone {
    white-space: normal;
  }

  .services-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-cta__actions .vs-btn,
  .services-cta__actions .cta-quote-link {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Contact page — embedded Google Form */
.google-form-embed {
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  background: #ffffff;
}

.google-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
}

.google-form-embed__fallback {
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(0, 255, 255, 0.15);
}

.google-form-embed__fallback a {
  color: var(--gold-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.google-form-embed__fallback a:hover {
  color: var(--neon-cyan);
}

@media (max-width: 767px) {
  .google-form-embed iframe {
    min-height: 780px;
  }
}

.services-grid > [class*="col-"] {
  min-width: 0;
}

.services-grid .service-card--grid .feature-style__title {
  color: var(--gold-color);
}

.feature-style:hover {
  border-color: rgba(255, 0, 255, 0.5);
  box-shadow: var(--glow-pink);
}

/* Preloader */
.preloader {
  background-color: #000000;
}

.preloader .loader {
  border-color: var(--neon-cyan);
  border-top-color: var(--pink-color);
  box-shadow: var(--glow-cyan);
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--pink-color));
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-color);
}

/* Selection highlight */
::selection {
  background: var(--pink-color);
  color: #ffffff;
}

/* Slick dots */
.slick-dots li.slick-active button {
  background-color: var(--pink-color);
  box-shadow: var(--glow-pink);
}

.slick-dots li button {
  background-color: rgba(0, 255, 255, 0.35);
}

/* ── Mobile alignment fixes ── */
@media (max-width: 991px) {
  .vs-header.layout3 .sticky-active > .container,
  .vs-header.layout1 .sticky-active > .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .vs-header.layout3 .header-logo.style3 {
    padding: 12px 0 8px;
    margin-bottom: 0;
  }

  .vs-header.layout3 .header-actions {
    width: 100%;
    gap: 0.75rem;
    padding: 0 0 12px;
  }

  .vs-header.layout3 .header-wc.style2 {
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
  }

  .vs-header.layout3 .header-wc .header-call-btn {
    flex: 1;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 0.5rem;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .vs-header.layout3 .header-wc .header-call-btn .call-btn__number {
    font-size: 10px;
  }

  .vs-header.layout3 .vs-menu-toggle,
  .vs-header.layout3 .header-menu-toggle,
  .vs-header.layout1 .vs-menu-toggle,
  .vs-header.layout1 .header-menu-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(0, 255, 255, 0.45);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }

  .vs-header.layout3 .header-menu-toggle:hover,
  .vs-header.layout1 .header-menu-toggle:hover,
  .vs-header.layout3 .vs-menu-toggle:hover,
  .vs-header.layout1 .vs-menu-toggle:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    color: var(--neon-cyan);
  }

  .header-menu-toggle__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 18px;
    height: 14px;
  }

  .header-menu-toggle__icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .vs-header.layout1 {
    padding-bottom: 16px;
  }

  .vs-header.layout1 .header-logo {
    margin-bottom: 0;
    text-align: left;
  }

  .vs-header.layout1 .header-logo .logo,
  .vs-header.layout1 .header-logo img {
    max-width: 140px;
    max-height: 80px;
  }

  .vs-header.layout1 .header-actions--inner {
    gap: 0.75rem;
    min-height: 44px;
  }

  .vs-header.layout1 .header-call-btn.d-md-none {
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic__frame.is-active {
    animation: none;
  }
}

@media (max-width: 767px) {
  /* Stacked mobile hero: image band on top, branded content panel below */
  .hero-cinematic {
    display: flex;
    flex-direction: column;
    background: #000000;
    min-height: 0;
  }

  /* Home header in document flow — stops logo/image overlap & clipping */
  .vs-header.layout3 {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    background: #000000;
  }

  .vs-header.layout3 .sticky-active {
    background: transparent;
  }

  .vs-header.layout3 .header-logo.style3 {
    padding: 10px 44px 6px;
  }

  .vs-header.layout3 .header-logo .logo,
  .vs-header.layout3 .header-logo img {
    max-width: 168px;
    max-height: 88px;
  }

  .vs-header.layout3 .header-home__top {
    position: relative;
  }

  .vs-header.layout3 .header-home__top > .col-12.d-lg-none {
    position: absolute;
    top: 14px;
    right: 0;
    width: auto;
    z-index: 2;
    padding: 0;
  }

  .vs-header.layout3 .header-actions {
    width: auto;
    padding: 0;
    justify-content: flex-end;
  }

  .hero-cinematic__media {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: clamp(200px, 36vh, 280px);
    background-color: #111111;
  }

  .hero-cinematic__media::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.42) 62%,
      rgba(10, 10, 10, 1) 100%
    );
  }

  .hero-cinematic__frame {
    background-position: center 30%;
  }

  .hero-cinematic__frame.is-active {
    animation: none !important;
    transform: scale(1) !important;
  }

  .hero-cinematic__content {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding-bottom: 0;
  }

  .hero-cinematic .hero-layout2.slick-slider {
    margin-bottom: 0;
  }

  .hero-cinematic .hero-layout2 .slick-slide > div {
    min-height: 0 !important;
  }

  .hero-cinematic__content::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--neon-cyan) 0%,
      var(--pink-color) 50%,
      var(--gold-color) 100%
    );
  }

  .hero-main.hero-cinematic__panel,
  .hero-main.style3 {
    min-height: 0 !important;
    height: auto !important;
    padding: 0.85rem 0 1.35rem !important;
    padding-right: 0 !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
  }

  .hero-main.style3 .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-main.style3 .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center !important;
  }

  .hero-main.style3 .row {
    justify-content: center;
  }

  .hero-main.style3 .col-12 {
    text-align: center !important;
  }

  .hero-cinematic .hero-main .hero-title,
  .hero-cinematic .hero-main .hero-title .htext1 {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  }

  .hero-cinematic .hero-main .hero-title .highlight,
  .hero-cinematic .hero-main .hero-title .htext2 {
    color: var(--gold-color);
    text-shadow: 0 0 24px rgba(255, 215, 0, 0.35);
  }

  .hero-main.style3 .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem) !important;
    max-width: 100% !important;
    line-height: 1.08;
    margin-bottom: 0.65rem;
    overflow: visible;
    word-wrap: break-word;
    text-align: center;
  }

  .hero-main.style3 .hero-title span {
    display: block;
  }

  .hero-cinematic .hero-main.style3 .hero-subtitle,
  .hero-cinematic .hero-main.style3 .hero-subtitle .htext3 {
    display: block;
    color: rgba(0, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.6;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    text-transform: uppercase;
  }

  .hero-cinematic .hero-layout2 .slick-dots {
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    justify-content: center;
    margin: 0;
  }

  .hero-cinematic .hero-layout2 .slick-dots button {
    background-color: rgba(255, 255, 255, 0.35);
  }

  .hero-cinematic .hero-layout2 .slick-dots .slick-active button {
    background-color: var(--neon-cyan);
  }

  .breadcumb-wrapper {
    min-height: 320px;
    padding-top: 140px;
    padding-bottom: 48px;
  }

  .breadcumb-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .breadcumb-menu {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
}

@media (max-width: 399px) {
  .vs-header.layout3 .header-wc .header-call-btn,
  .vs-header.layout3 .header-wc .header-call-btn .call-btn__number {
    font-size: 9px;
    padding: 0.55rem 0.35rem;
  }

  .mobile-call-bar__btn {
    font-size: 12px;
  }

  .product-cart[href^="tel:"] {
    font-size: 10px;
  }
}

.call-btn__number {
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.product-cart[href^="tel:"] {
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.product-cart[href^="tel:"]:hover {
  color: var(--pink-color);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.94);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--neon-cyan), var(--pink-color)) 1;
  backdrop-filter: blur(8px);
}

.mobile-call-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-call-bar__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0 0.85rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-color);
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-call-bar__quote:hover {
  color: var(--neon-cyan);
}

@media (max-width: 991px) {
  body.vs-body,
  body.vs-body2 {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* Sticky bar is the single pink call CTA — hide header & hero duplicates */
  .vs-header.layout3 .header-actions .header-wc,
  .vs-header.layout3 .header-home__cta-tablet .header-wc,
  .vs-header.layout1 .header-wc.style2,
  .vs-header.layout1 .header-call-btn.d-md-none,
  .hero-cinematic .hero-main.style3 .hbtn1 {
    display: none !important;
  }

  .vs-header.layout3 .header-home__top {
    position: relative;
  }

  .vs-header.layout3 .header-home__top > .col-12.d-lg-none {
    position: absolute;
    top: 14px;
    right: 0;
    width: auto;
    z-index: 2;
    padding: 0;
  }

  .vs-header.layout3 .header-actions {
    width: auto;
    padding: 0;
    justify-content: flex-end;
  }

  .scrollToTop.scroll-btn {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

/* ── Mobile slide-out menu (hamburger panel) ── */
.vs-menu-wrapper {
  background-color: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.vs-menu-wrapper .vs-menu-area {
  display: flex;
  flex-direction: column;
  width: min(100%, 340px);
  max-width: 340px;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-right: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--neon-cyan), var(--pink-color)) 1;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.65);
  left: -100%;
  opacity: 1;
  visibility: visible;
  transition: left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mobile-menu-header__logo {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.mobile-menu-header__logo .logo {
  max-width: 160px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.vs-menu-wrapper .mobile-menu-close {
  position: static;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 0, 255, 0.45);
  border-radius: 10px;
  background: rgba(255, 0, 255, 0.08);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.vs-menu-wrapper .mobile-menu-close:hover {
  background: rgba(255, 0, 255, 0.2);
  border-color: var(--pink-color);
  color: var(--neon-cyan);
  box-shadow: var(--glow-pink);
}

.mobile-menu-cta {
  padding: 1.25rem 1.25rem 0.75rem;
  flex-shrink: 0;
}

.mobile-menu-cta .mobile-menu-call {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  font-size: 13px;
}

.mobile-menu-cta .mobile-menu-quote {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: clamp(14px, 3.5vw, 16px);
}

.vs-menu-wrapper .vs-mobile-menu {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: none;
  margin-top: 0;
  padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}

.vs-menu-wrapper .vs-mobile-menu > ul {
  padding: 0 1rem;
  margin: 0;
}

.vs-menu-wrapper .vs-mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.vs-menu-wrapper .vs-mobile-menu ul li:last-child {
  border-bottom: none;
}

.vs-menu-wrapper .vs-mobile-menu ul li a {
  display: flex;
  align-items: center;
  padding: 1.05rem 0.85rem;
  font-family: var(--title-font);
  font-size: clamp(17px, 4.5vw, 20px);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ececec;
  line-height: 1.35;
  min-height: 52px;
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.vs-menu-wrapper .vs-mobile-menu ul li a::before {
  display: none;
}

.vs-menu-wrapper .vs-mobile-menu ul li a:hover,
.vs-menu-wrapper .vs-mobile-menu ul li a.active {
  color: var(--neon-cyan);
  padding-left: 1rem;
  background: rgba(0, 255, 255, 0.06);
  text-shadow: var(--glow-cyan);
}

.vs-menu-wrapper .vs-mobile-menu ul li a.active {
  border-left: 3px solid var(--pink-color);
  padding-left: calc(0.75rem - 3px);
}

.mobile-menu-footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.mobile-menu-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--title-font);
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-color);
  text-decoration: none;
}

.mobile-menu-footer__phone:hover {
  color: var(--neon-cyan);
}

.mobile-menu-footer__address {
  margin: 0.35rem 0 0;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.04em;
}

html.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-header__logo .logo {
    max-width: 140px;
    max-height: 64px;
  }
}

/* Services page — missing media checklist (dev/content) */
.missing-media-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 24px rgba(255, 0, 255, 0.08);
}

.missing-media-panel code {
  color: var(--neon-cyan);
  font-size: 0.92em;
  word-break: break-all;
}

.missing-media-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 15px;
}

.missing-media-table th,
.missing-media-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.missing-media-table th {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-color);
}

.missing-media-table tbody tr:last-child td {
  border-bottom: 0;
}

.missing-media-table tbody tr:hover {
  background: rgba(0, 255, 255, 0.04);
}

/* ── Mobile homepage: layout + no horizontal scroll ── */
@media (max-width: 991px) {
  .container,
  .custom-container {
    max-width: 100%;
  }

  .row > [class*="col-"] {
    min-width: 0;
  }

  section {
    max-width: 100%;
    overflow-x: clip;
  }

  .h2section-layout1,
  .deal-section,
  .tab-style1 {
    overflow: hidden;
  }

  .h2section-layout1 .ele1,
  .h2section-layout1 .ele2 {
    display: none;
  }

  .deal-section .img-box6 .img-offer__number {
    white-space: normal;
    padding: 12px 10px;
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.3;
  }

  .deal-content .sec-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    word-wrap: break-word;
  }

  .product-carousel2 .slick-list {
    overflow: hidden !important;
  }

  .h2section-layout1 .product-carousel2.row.slick-initialized {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .service-card--carousel .product-price__number,
  .service-card--carousel .product-cart[href^="tel:"],
  .what-we-buy-card .product-price__number,
  .what-we-buy-card .product-cart[href^="tel:"] {
    white-space: normal;
    word-break: break-word;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.45;
  }

  .service-card--carousel .product-title,
  .what-we-buy-card .product-title {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
    word-wrap: break-word;
  }
}

@media (max-width: 767px) {
  .tab-style1 .nav::before,
  .tab-style1 .nav::after {
    display: none;
  }

  .tab-style1 .nav .nav-link {
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
    min-height: 48px;
  }

  .h2section-layout1 .title-area .sec-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .h2section-layout1 .row.justify-content-between {
    row-gap: 0.75rem;
  }

  .carousel-arrow2.title-area {
    justify-content: flex-start;
  }

  .vs-header.layout3 .svg-line {
    display: none !important;
  }

  .deal-section .deal-content .vs-btn,
  .deal-section .deal-content .cta-quote-link {
    display: inline-flex;
    max-width: 100%;
  }
}

@media (max-width: 399px) {
  .tab-style1 .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .tab-style1 .nav .nav-item {
    width: 100%;
  }

  .hero-main.style3 .vs-btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .header-call-btn .call-btn__number,
  .call-btn__number {
    white-space: normal;
  }

  .mobile-call-bar__btn,
  .mobile-call-bar__quote {
    font-size: 11px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
