/* =====================================================
PALLET SOURCE FUNNEL STYLESHEET
Cleaned + deduplicated
===================================================== */

/* =====================================================
COLOR SYSTEM
===================================================== */

:root {
  --ps-red: #a11318;
  --ps-red-deep: #7c0e12;
  --ps-dark: #0b1220;
  --ps-dark-2: #121826;
  --ps-text: #26272b;
  --ps-muted: #667085;
  --ps-bg: #f6f4f1;
  --ps-card: #ffffff;
  --ps-line: #d8dde3;
  --ps-soft: #f7f5f1;
  --ps-black: #000;
  --ps-white: #fff;
}

/* =====================================================
GLOBAL RESET
===================================================== */

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  background: url("/images/warehouse.jpg") center/cover fixed no-repeat;
  color: var(--ps-text);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  line-height: 1.25;

}

a {
  text-decoration: none;
}

/* =====================================================
HEADER
===================================================== */

.navbar-fixed-top {
  transition: background .35s ease, box-shadow .35s ease;
  background: rgba(16, 17, 20, .0) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

/* NAVBAR AFTER SCROLL */

.navbar-fixed-top.nav-scrolled {
  background: #000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.navbar-brand img {
  max-height: 52px;
  width: auto;
}

.navbar-default .navbar-nav>li>a {
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .03em;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
  color: #fff !important;
  background: transparent;
  text-shadow: 0 0 12px rgba(255, 255, 255, .2);
}

.navbar-toggle {
  background: #fff !important;
  border: 2px solid #7c0e12 !important;
}

.navbar-toggle .icon-bar {
  background: #7c0e12 !important; /* dark maroon */
}

/* =====================================================
FUNNEL LAYOUT
===================================================== */

.offer-shell {
  padding: 120px 15px 28px;
}

.offer-card {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid #cfc8be;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .12);
  overflow: hidden;
  background: transparent;
}

.funnel-topband {
  background: linear-gradient(135deg, var(--ps-red), var(--ps-red-deep));
  height: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.funnel-topband::after {
  content: '';
  position: absolute;
  inset: auto -8% -44px auto;
  width: 320px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 60%);
  filter: blur(8px);
}

.funnel-logo {
  max-width: 250px;
  width: 100%;
  float:left;
  z-index: 2;
}

.offer-form-pane {
  background: linear-gradient(180deg, #f7f5f1, #f0ece6);
  padding: 44px 40px 40px;
}

.offer-kicker {
  color: #6f1a1c;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
}

.offer-form-pane h1 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.08;
  font-family: 'Abril Fatface', Georgia, serif;
  text-align: center;
}

.offer-intro {
  color: #55595f;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

/* =====================================================
FORM ELEMENTS
===================================================== */

.field {
  display: block;
  margin-top: 18px;
}

.field label,
.group-label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #46505c;
}

.required,
.req {
  color: var(--ps-red);
}

.text-input,
.select-input,
.textarea-input,
.input,
.select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #dfd7cc;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(161, 19, 24, .55);
  box-shadow: 0 0 0 4px rgba(161, 19, 24, .08);
}

/* =====================================================
FORM GRID
===================================================== */

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.field-full {
  grid-column: 1/-1;
}

/* =====================================================
OPTIONS
===================================================== */

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-top: 10px;
}

/* =====================================
   PROGRAM OPTIONS — PREMIUM UI
===================================== */
.option-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px;
  border-radius: 12px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(0,0,0,0.08);

  cursor: pointer;
  position: relative;

  transition: all 0.25s ease;
}

/* 🔥 HOVER LIFT */
.option-item:hover {
  transform: translateY(-4px) scale(1.01);

  border-color: #a11318;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.12),
    0 0 0 2px rgba(161,19,24,0.15),
    0 0 18px rgba(161,19,24,0.25);
}

/* 🔴 SELECTED STATE */
.option-item.active {
  border-color: #a11318;

  background: linear-gradient(
    135deg,
    rgba(161,19,24,0.08),
    rgba(255,255,255,0.9)
  );

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    0 0 0 2px rgba(161,19,24,0.25),
    0 0 25px rgba(161,19,24,0.35);
}

/* 💎 GLASS SHEEN */
.option-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0)
  );

  opacity: 0.5;
}

/* CHECKBOX */
.option-item input[type="checkbox"] {
  accent-color: #a11318;
  transform: scale(1.2);
}

/* RADIO MODE (Step 5) */
.option-radio .checkmark {
  border-radius: 50%;
}

.option-radio.active .checkmark {
  background: #a11318;
  border-color: #a11318;
}

.option-radio .checkmark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;

  transform: scale(0);
  transition: transform 0.2s ease;
}

.option-radio.active .checkmark::after {
  transform: scale(1);
}
/* CLICK PRESS */
.option-item:active {
  transform: translateY(-1px) scale(0.99);
}

.option-item::after {
  content: "";
  position: absolute;

  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);

  width: 0;
  height: 0;

  background: rgba(161,19,24,0.25);
  border-radius: 50%;

  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* =====================================================
BUTTONS
===================================================== */

.actions {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ps-red), var(--ps-red-deep));
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--ps-red);
  border: 2px solid rgba(161, 19, 24, .18);
}

/* =====================================================
PROGRESS BAR
===================================================== */

.progress-wrap {
  margin: 28px 0 30px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: #d8d6d2;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c3171f, #7c0e12);
}

/* =====================================================
HERO SPLIT LAYOUT
===================================================== */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.hero-panel {
  padding: 56px 40px;
  background: #fff;
}

.hero-right {
  background:
    linear-gradient(180deg, rgba(11, 12, 16, .45), rgba(11, 12, 16, .07));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-copy {
  text-align: center;
  color: #fff;
  max-width: 100%;
}

.hero-copy h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.hero-copy h3 {
  font-size: 62px;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 17px;
  margin: 0;
  padding: 0;
}

/* =====================================================
FOOTER (MERGED)
===================================================== */

/* ===============================
FOOTER AREA
=============================== */
.footer-area {
  position: relative;
  padding: 20px 10px;
  text-align: center;
  color: #ffffff;

  /* Gradient with controlled transparency */
  background: linear-gradient(
    180deg,
    rgba(161, 19, 24, 0.92) 0%,   /* #a11318 with opacity */
    rgba(0, 0, 0, 0.92) 100%
  );

  /* Optional: helps readability over busy backgrounds */
  backdrop-filter: blur(2px);

  /* Optional: subtle depth */
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}


.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  text-align: left;
}

.contact-info li {
  padding-left: 30px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .88);
}

.social-links-two {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}

.social-links-two a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .05);
}

.footer-copyright {
  background: transparent;
  padding: 18px 0;
}

.copyright {
  color: #7a7a7a;
  text-align: center;
}

/* =====================================================
BACK TO TOP
===================================================== */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ps-red), var(--ps-red-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  z-index: 9999;
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width:860px) {

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 380px;
  }

}

@media (max-width:767px) {

  .offer-shell {
    padding: 94px 10px 18px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

}

@media (max-width:640px) {

  .hero-panel {
    padding: 28px 20px 26px;
  }

  .hero-copy h2 {
    font-size: 30px;
  }

  .hero-copy h3 {
    font-size: 42px;
  }

}

.offer-form-pane h1 {
  text-shadow: 0 4px 12px rgba(0, 0, 0, .35) !important;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 56px;
  padding: 16px 26px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .25s ease;
}

/* NEXT BUTTON */

.btn-primary-step {
  background: linear-gradient(135deg, #a11318, #7c0e12);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.btn-primary-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
}

/* PREVIOUS BUTTON */

.btn-secondary-step {
  background: #fff;
  color: var(--ps-red);
  border: 2px solid rgba(161, 19, 24, .25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.btn-secondary-step:hover {
  background: #fff7f7;
  border-color: var(--ps-red);
  transform: translateY(-2px);
}

/* NAVBAR DEFAULT (transparent) */

.transparent-header .navbar-fixed-top {
  background: rgba(16, 17, 20, 0) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  transition: background .35s ease, box-shadow .35s ease;
}

/* NAVBAR AFTER SCROLL */

.transparent-header .navbar-fixed-top.nav-scrolled {
  background: #000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.hero-copy-steps {
  text-align: center;
  color: #a11318;
  font-size: 26px;
  font-weight: 800;
  text-shadow: 0px 0px #fff !important;
}

.footer-area {
  position: relative;
  z-index: 5;
  clear: both;
}

body {
  padding-top: 80px;
}
.footer-area {
  position: relative;
  z-index: 5;
  margin-top: 0;
}
.hero-3.full-section {
  min-height: 100vh;
  padding-top: 40px;   /* clears fixed navbar */
  padding-bottom: 120px; /* space before footer */
  }
.hero-3 .container {
  position: relative;
  z-index: 2;
}
 

/* CLOSE BUTTON */

.modal-close-btn{
  position:absolute;
  top:12px;
  right:12px;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#800000;
  color:#fff;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:9999;
  transition:all .2s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

.modal-close-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 16px rgba(0,0,0,0.35);
  background:#a11318;
}

.modal-close-btn i{
  pointer-events:none;
}

/* SEND BUTTON CLEAN VERSION */

.send-btn{
  color:maroon;
  font-weight:bold;
  text-transform:uppercase;
  background:#fff;
  border:2px solid maroon;
  padding:10px 18px;
  cursor:pointer;
  transition:all .25s ease;
}

.send-btn:hover{
  background:maroon;
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 6px 12px rgba(0,0,0,0.3);
}
/* ===============================
   PROGRAM OPTION BUTTONS
================================= */
.program-option {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 12px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(0,0,0,0.08);

  cursor: pointer;

  transition: all 0.25s ease;
  position: relative;
}

/* 🔥 HOVER LIFT */
.program-option:hover {
  transform: translateY(-4px) scale(1.01);

  border-color: #a11318;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.12),
    0 0 0 2px rgba(161,19,24,0.15),
    0 0 18px rgba(161,19,24,0.25);
}

/* 🔴 ACTIVE / CHECKED STATE */
.program-option.active {
  border-color: #a11318;

  background: linear-gradient(
    135deg,
    rgba(161,19,24,0.08),
    rgba(255,255,255,0.85)
  );

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    0 0 0 2px rgba(161,19,24,0.25),
    0 0 25px rgba(161,19,24,0.35);
}

/* 💎 INNER GLOW EDGE (premium feel) */
.program-option::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;

  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0)
  );

  opacity: 0.5;
}

/* CHECKBOX CLEANUP */
.program-option input[type="checkbox"] {
  accent-color: #a11318;
  transform: scale(1.2);
}

/* =====================================================
RESPONSIVE GUARANTEES (GLOBAL SAFE BLOCK)
===================================================== */

/* ===============================
TABLET + SMALL DESKTOP
=============================== */
@media (max-width: 1024px) {

  .offer-card {
    width: 100%;
    max-width: 95%;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-right {
    width: 100%;
  }

}

/* ===============================
TABLET PORTRAIT / LARGE PHONES
=============================== */
@media (max-width: 768px) {

  .offer-shell {
    padding: 100px 15px 40px;
  }

  .hero-panel {
    padding: 28px 20px;
  }

  .hero-right {
    padding: 28px 20px;
  }

  .option-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
  }

}

/* ===============================
MOBILE (CORE UX)
=============================== */
@media (max-width: 640px) {

  .actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-step {
    width: 100%;
    min-height: 54px;
  }

  .hero-copy h2 {
    font-size: 26px;
  }

  .hero-copy h3 {
    font-size: 34px;
  }

  .offer-form-pane h1 {
    font-size: 28px;
  }

}

/* ===============================
SMALL MOBILE (SAFETY)
=============================== */
@media (max-width: 400px) {

  .hero-panel {
    padding: 20px 14px;
  }

  .option-item {
    padding: 12px;
  }

  .btn-step {
    font-size: 14px;
  }

}

/* =====================================================
FORCE GLASS PANEL TO TOP (MOBILE PRIORITY)
===================================================== */

@media (max-width: 962px) {

  .hero-split {
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    order: -1; /* 🔥 forces it to top */
    width: 100%;
  }

  .hero-panel {
    order: 1;
    width: 100%;
  }

}

/* =====================================================
ABOUT PANEL MOBILE OPTIMIZATION
===================================================== */

@media (max-width: 962px) {

  .hero-copy {
    width: 98%;
    margin: 0 auto;
    padding: 18px 16px !important;
  }

  .hero-copy p {
    padding: 0 !important;
    margin: 0;
  }

}
/* =====================================================
UNIFIED CTA BUTTON SYSTEM
===================================================== */

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;
  border-radius: 10px;

  background: linear-gradient(135deg, #a11318, #7c0e12);
  color: #fff !important;

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;

  border: none;
  cursor: pointer;

  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.25),
    0 0 15px rgba(161,19,24,0.35);
}
/* =====================================================
ABOUT GLASS PANEL — MOBILE FIX
===================================================== */

@media (max-width: 962px) {

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-copy {
    width: 98% !important;
    max-width: none !important;

    margin: 0 auto;

    padding: 12px 10px !important;

    border-radius: 18px;
  }

}
/* =====================================
TEXT COLOR FIX
===================================== */

.hero-copy {
  color: #ffffff;
}

/* 🔥 HOVER STATE (GLASS LIGHTENS → TEXT TURNS MAROON)
.hero-copy:hover {
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(14px);
}

.hero-copy:hover h2,
.hero-copy:hover h3,
.hero-copy:hover p {
  color: #7c0e12;
}  */

.cta-btn {
    display: inline-block;

    background: linear-gradient(145deg, #a11318, #7c0e12);

    color: #fff;
    font-weight: bold;
    font-size: 18px;

    padding: 14px 28px;
    border-radius: 12px;

    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.35),
        0 0 12px rgba(161, 19, 24, 0.4);

    transition: all 0.25s ease;
}

/* 🔥 HOVER */
.cta-btn:hover {
    transform: translateY(-2px);
    color: white;
    background: linear-gradient(145deg, #c5161c, #900f14);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 18px rgba(255, 0, 0, 0.6);

}
