/* ===== Global Layout: popups, modals, floating buttons, cursor, sticky nav ===== */
/* Shared across every page via app.blade.php */

/* ── Slide-in Quote Sidebar ── */
.ls-popup-sidebar {
  padding: 0 !important;
  background: #111111;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.ls-popup-header {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  padding: 20px 20px 16px;
  position: relative;
}
.ls-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  transition: background 0.2s;
}
.ls-popup-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.ls-popup-price-text {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.ls-popup-price-big { font-size: 25px; }
.ls-popup-badges {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ls-popup-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 9px;
  padding: 3px 9px;
  border-radius: 20px;
}
.ls-popup-body {
  padding: 0 9px;
  flex: 1;
  overflow-y: auto;
}
.ls-popup-sidebar .form-group.mb-2 { margin-bottom: 14px !important; }
.ls-popup-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: -5px;
  margin-bottom: 0;
}
.ls-popup-label--first { margin-top: 10px; }
.ls-popup-sidebar .text-danger { color: #e74c3c !important; }
.ls-popup-field { position: relative; }
.ls-popup-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
}
.ls-popup-icon--top {
  position: absolute;
  left: 11px;
  top: 12px;
  opacity: 0.4;
  pointer-events: none;
}
.ls-popup-input {
  height: 42px;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0 12px 0 34px;
  color: #fff;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ls-popup-input:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.18);
}
.ls-popup-textarea {
  height: 70px;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px 10px 34px;
  color: #fff;
  font-size: 13px;
  outline: none;
  resize: none;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ls-popup-textarea:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.18);
}
.ls-popup-footer {
  justify-content: center !important;
  border: none !important;
  padding: 8px 0 0 !important;
  flex-direction: column;
  gap: 10px;
}
.ls-popup-submit-btn {
  width: 100%;
  padding: 13px;
  background: #e74c3c;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  font-family: inherit;
  transition: opacity 0.2s;
}
.ls-popup-submit-btn:hover { opacity: 0.88; }
.ls-popup-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* ── "Contact Us" exit/timed modal — redesigned: centered, dark theme, responsive ──
   Bootstrap's JS toggles `display:block` inline on `.modal.show`, and this page
   doesn't load full Bootstrap CSS (only its JS), so `.modal-dialog-centered` has
   no effect here. Center it ourselves with !important to beat the inline style. */
#contactUsModal.modal.show {
  display: block !important;
  overflow-y: auto;
  padding: 16px 0;
  box-sizing: border-box;
}
.ls-cu2-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 16px);
  max-width: 440px;
  width: calc(100% - 32px);
  margin: 0 auto;
  transition: transform .3s ease-out;
  transform: translateY(-50px);
}
/* Bootstrap CSS (which normally clears this on .show) isn't loaded on this page - reset it ourselves */
#contactUsModal.show .ls-cu2-dialog { transform: none; }
.ls-cu2-content {
  background: #171310;
  border: 1px solid rgba(255,184,0,.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  position: relative;
}
.ls-cu2-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease;
}
.ls-cu2-close:hover { background: rgba(255,255,255,.28); }

.ls-cu2-header {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 55%, #FFB800 130%);
  padding: 22px 26px 16px;
}
.ls-cu2-eyebrow {
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.ls-cu2-title {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
}
.ls-cu2-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.ls-cu2-badge {
  background: rgba(0,0,0,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.ls-cu2-form { display: flex; flex-direction: column; }
.ls-cu2-body { padding: 16px 26px 2px; }
.ls-cu2-body .form-group.mb-2 { margin-bottom: 10px !important; }
.ls-cu2-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ls-cu2-body .ls-popup-textarea { height: 56px; }
.ls-cu2-footer {
  border: none !important;
  flex-direction: column;
  gap: 8px;
  padding: 4px 26px 20px !important;
}
.ls-cu2-submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--ls-gold, #FFB800);
  border: none;
  border-radius: 12px;
  color: #171310;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s ease;
}
.ls-cu2-submit-btn:hover { background: var(--ls-gold-light, #FFD154); }
.ls-cu2-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin: 0;
}

@media (max-width: 480px) {
  .ls-cu2-dialog { width: calc(100% - 24px); margin: 1rem auto; }
  .ls-cu2-title { font-size: 18px; }
  .ls-cu2-header { padding: 26px 20px 18px; }
  .ls-cu2-body { padding: 18px 20px 4px; }
  .ls-cu2-footer { padding: 6px 20px 22px !important; }
}

/* ── Popup layout: model photo (left, desktop/tablet only) + form (right) ── */
.ls-cu2-layout { display: flex; flex-direction: column; }
.ls-cu2-formside { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.ls-cu2-media { display: none; }

@media (min-width: 768px) {
  .ls-cu2-dialog { max-width: 820px; }
  .ls-cu2-layout { flex-direction: row; align-items: stretch; }
  .ls-cu2-media {
    display: block;
    position: relative;
    flex: 0 0 300px;
    overflow: hidden;
  }
  .ls-cu2-media-img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ls-cu2-media-trust {
    position: absolute;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.97);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
  }
  .ls-cu2-media-trust--bottom { bottom: 14px; }
  .ls-cu2-google-logo { width: 22px; height: 22px; flex-shrink: 0; }
  .ls-cu2-trust-text {
    font-size: 11.5px;
    font-weight: 600;
    color: #171310;
    line-height: 1.35;
  }
  .ls-cu2-trust-text strong { font-size: 13px; font-weight: 800; }
  .ls-cu2-trust-divider { margin: 0 3px; color: #999; }
}

/* ── Floating "Click for Discount" tab ── */
.ls-discount-tab {
  background: #b90808;
  padding: 10px;
  color: #fff;
  position: fixed;
  top: calc(50% - 18px);
  right: -50px;
  transform: rotate(-90deg);
  z-index: 999;
  cursor: pointer;
}

/* ── Floating call / WhatsApp buttons (desktop only) ── */
.ls-float-action {
  position: fixed;
  left: 10px;
  z-index: 9999;
}
.ls-float-action--call { bottom: 70px; }
.ls-float-action--wa { bottom: 10px; }
.ls-float-icon-img { height: 50px; width: 50px; }

@media (max-width: 1024px) {
  .ls-float-action { display: none !important; }
}

/* ── Mobile side-menu social icons ── */
.ls-mobile-social-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

/* ── Sticky Bottom Nav ──
   Desktop-hide used to be JS-only (layout.js sets display:none on
   DOMContentLoaded), so on desktop the bar was visible by default and only
   disappeared once that script ran — delayed behind ~30 blocking
   stylesheets, so it flashed for up to a second before hiding. This media
   query hides it on desktop immediately, at first paint; layout.js still
   drives it below 769px and reacts to live resizing. */
#loharBar {
  position: fixed; bottom: 15px; left: 50%;
  transform: translateX(-50%);
  width: 95%; max-width: 520px;
  background: #0d1117;
  border-radius: 22px;
  padding: 8px 6px;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
}
@media (min-width: 769px) {
  #loharBar { display: none; }
}
.lb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 10px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.lb-item i {
  font-size: 20px;
  color: #555;
  transition: color 0.25s ease;
  line-height: 1;
}
.lb-item span {
  font-size: 10px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.lb-dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #FFB800;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lb-item.lb-active i   { color: #FFB800; }
.lb-item.lb-active span { color: #FFB800; }
.lb-item.lb-active .lb-dot { opacity: 1; }
.lb-item.lb-wa {
  background: #FFB800;
  border-radius: 16px;
}
.lb-item.lb-wa i   { color: #000 !important; }
.lb-item.lb-wa span { color: #000 !important; font-weight: 700; }
.lb-item.lb-wa .lb-dot { display: none; }
.lb-item.lb-wa:hover { background: #FFD154; }

/* ── Header ── */
.ls-header-logo { height: 60px; }
.ls-best-price-link { font-weight: 700; color: #fff; border-bottom: 3px solid #ffcc00; }
.ls-header-right { flex-shrink: 0; }
.ls-aside-open { margin-left: 20px; flex-shrink: 0; }
.ls-menu-toggle { flex-shrink: 0; }

/* ===== Call Button ===== */
.ls-call-btn   { text-decoration: none; flex-shrink: 0; }
.ls-call-inner { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: 8px; }
.ls-call-icon  {
    background: #0d6efd;
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
    box-shadow: 0 0 12px rgba(255,215,0,0.9);
    animation: ls-ring 1.2s infinite;
}
.ls-call-label       { display: block; font-size: 22px; font-weight: bold; color: #ffd700; }
.ls-call-number-big  { display: block; font-size: 17px; font-weight: bold; color: #fff; letter-spacing: 1px; }
.ls-call-number-small{ display: block; font-size: 12px; font-weight: bold; color: #fff; letter-spacing: 0.5px; }

/* Desktop: show full text, hide mobile text */
@media (min-width: 1200px) {
    .ls-call-text-mobile  { display: none !important; }
    .ls-call-text-desktop { display: block; }
    .ls-mobile-only       { display: none !important; }
    .ls-desktop-only      { display: flex !important; }
    .ls-call-inner        { animation: ls-float 2s infinite ease-in-out; }
}

/* Mobile: hide full text, show small number */
@media (max-width: 1199px) {
    .ls-call-text-desktop { display: none !important; }
    .ls-call-text-mobile  { display: block; }
    .ls-desktop-only      { display: none !important; }
    .ls-mobile-only       { display: block !important; margin-left: auto; }
    .ls-call-inner        { padding: 4px 8px 4px 4px; gap: 6px; }
    .ls-call-icon         { width: 34px; height: 34px; font-size: 17px; }
}

/* ===== WhatsApp buttons — brand green, centered text (site-wide) =====
   Scoped to actual anchor buttons; excludes the floating icon images,
   the sticky quick-action dock (.lb-wa) and the gold "Referral Program"
   CTAs, which intentionally keep their own branding. */
a.wa-btn:not(.lb-wa):not(.ls-ref-hero-cta):not(.ls-ref-earn-btn),
a.btn-whatsapp,
a.ls-blog-cta-btn--wa {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}
a.wa-btn:not(.lb-wa):not(.ls-ref-hero-cta):not(.ls-ref-earn-btn):hover,
a.btn-whatsapp:hover,
a.ls-blog-cta-btn--wa:hover {
    background-color: #1DA851 !important;
    border-color: #1DA851 !important;
    color: #fff !important;
}

/* ===== Call CTA: show the phone number inline on desktop, keep it
   short on mobile where space is tight ===== */
.ls-call-number-inline { display: none; }
@media (min-width: 992px) {
    .ls-call-number-inline { display: inline; }
}

/* ===== Animations ===== */
@keyframes ls-ring {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(15deg); }
    20%  { transform: rotate(-10deg); }
    30%  { transform: rotate(15deg); }
    40%  { transform: rotate(-5deg); }
    50%  { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}
@keyframes ls-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

/* ── Footer ── */
.ls-footer {
   position: relative;
   background-color: #0A0A0A;
   background-image:
      radial-gradient(ellipse 900px 420px at 12% -10%, rgba(201,168,76,0.16), transparent 60%),
      radial-gradient(ellipse 700px 380px at 100% 0%, rgba(201,168,76,0.10), transparent 65%),
      linear-gradient(180deg, #0d0d0d 0%, #0A0A0A 40%, #060606 100%);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   overflow: hidden;
   border-top: 1px solid rgba(201,168,76,0.18);
}
.ls-footer::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: url('../img/more/texture-2.webp');
   background-size: cover;
   background-position: center;
   opacity: 0.035;
   pointer-events: none;
}
.ls-footer::after {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}
.ls-footer-top {
   position: relative;
   z-index: 1;
   padding: 80px 0 56px;
}
.ls-footer-grid {
   display: grid;
   grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
   gap: 48px;
}
.ls-footer-col--brand { padding-right: 16px; }
@media (min-width: 992px) {
   .ls-footer-col { position: relative; }
   .ls-footer-col::before {
      content: '';
      position: absolute;
      left: -24px;
      top: 4px;
      bottom: 4px;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(201,168,76,0.22), transparent);
   }
   .ls-footer-col--brand::before { display: none; }
}
.ls-footer-logo {
   display: inline-block;
   margin-bottom: 20px;
}
.ls-footer-logo img {
   min-width: 165px;
   max-width: 200px;
}
.ls-footer-about {
   font-size: 14px;
   line-height: 1.8;
   color: #999999;
   margin-bottom: 20px;
}
.ls-footer-social {
   display: flex;
   gap: 10px;
}
.ls-footer-social-icon {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 1px solid rgba(201,168,76,0.25);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #C9A84C;
   font-size: 15px;
   transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ls-footer-social-icon:hover {
   background: #C9A84C;
   color: #0A0A0A;
   border-color: #C9A84C;
}

.ls-footer-heading {
   font-family: 'Playfair Display', Georgia, serif;
   font-size: 18px;
   font-weight: 700;
   color: #FFFFFF;
   margin-bottom: 22px;
   position: relative;
   padding-bottom: 12px;
}
.ls-footer-heading::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   width: 36px;
   height: 2px;
   background: #C9A84C;
   border-radius: 2px;
}
.ls-footer-nav {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 13px;
}
.ls-footer-nav a {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: #999999;
   font-size: 14px;
   text-decoration: none;
   transition: color 0.2s, gap 0.2s;
}
.ls-footer-nav a i {
   font-size: 10px;
   color: #C9A84C;
   flex-shrink: 0;
}
.ls-footer-nav a:hover {
   color: #C9A84C;
   gap: 11px;
}

.ls-footer-contact-row {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 16px;
}
.ls-footer-contact-row:last-child { margin-bottom: 0; }
.ls-footer-contact-icon {
   flex-shrink: 0;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   border: 1px solid rgba(201,168,76,0.25);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #C9A84C;
   font-size: 13px;
   margin-top: 2px;
}
.ls-footer-address {
   font-size: 14px;
   color: #999999;
   line-height: 1.7;
   padding-top: 4px;
}
.ls-footer-contact {
   font-size: 14px;
   color: #CCCCCC;
}
.ls-footer-contact a {
   color: #FFFFFF;
   text-decoration: none;
   font-weight: 600;
}
.ls-footer-contact a:hover { color: #C9A84C; }
.ls-footer-contact-label {
   display: block;
   font-size: 11px;
   color: #C9A84C;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-weight: 700;
   margin-bottom: 2px;
}

.ls-footer-bottom {
   position: relative;
   z-index: 1;
   background-color: rgba(6,6,6,0.6);
   padding: 18px 0;
   border-top: 1px solid rgba(201,168,76,0.15);
}
.ls-footer-bottom-inner {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
}
.ls-footer-copyright p {
   font-size: 13px;
   color: #999999;
   margin: 0;
}
.ls-footer-copyright a {
   color: #C9A84C;
   text-decoration: none;
   font-weight: 600;
}
.ls-footer-copyright sup { color: #C9A84C; }
.ls-footer-dmca-img {
   max-width: 120px;
   height: auto;
   display: block;
}

@media (max-width: 991px) {
   .ls-footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px 24px;
   }
   .ls-footer-col--brand,
   .ls-footer-col--contact {
      grid-column: 1 / -1;
   }
   .ls-footer-col--brand { text-align: center; }
   .ls-footer-col--brand .ls-footer-social { justify-content: center; }
}

@media (max-width: 575px) {
   .ls-footer-top { padding: 56px 0 32px; }
   .ls-footer-grid {
      gap: 32px 16px;
   }
   .ls-footer-heading { font-size: 16px; }
   .ls-footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ── Custom cursor (desktop only) ── */
.ls-cursor-outer {
  width: 40px;
  height: 40px;
  border: 4px solid #FFD700;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}
.ls-cursor-inner {
  width: 8px;
  height: 8px;
  background: #FFD700;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}
