@charset "UTF-8";

/* ================================
   NAJOLA BUILD A BOAT - MODERN CSS
================================ */

:root {
  --navy: #071d33;
  --navy2: #0b2a45;
  --blue: #0ea5e9;
  --gold: #c9a44c;
  --bg: #f4f7fb;
  --card: #ffffff;
  --text: #172033;
  --muted: #667085;
  --border: #e5eaf0;
  --shadow: 0 14px 40px rgba(7, 29, 51, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
  text-decoration: none;
}

.no-padding {
  padding: 0 !important;
}

/* ================================
   MODEL SELECTION PAGE
================================ */

#boatSelectionDiv {
  min-height: 100vh;
  padding: 45px 20px 100px;
  background:
    radial-gradient(circle at top left, rgba(14,165,233,.15), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

#boatSelectionDiv:before {
  content: "Build Your Boat";
  display: block;
  text-align: center;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 20px auto 8px;
}

#boatSelectionDiv:after {
  content: "Select a model to start customizing your Najola boat.";
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 35px;
}

.PageSection {
  position: relative;
  width: 100%;
  padding: 18px 10px;
  margin: 0 auto 22px;
  background: transparent !important;
  border: 0 !important;
  color: var(--navy) !important;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.PageSection i {
  display: none;
}

#boatSelectionDiv .container-fluid {
  max-width: 1320px;
  margin: 0 auto !important;
}

#boatSelectionDiv .row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0 !important;
}

#boatSelectionDiv .col-xs-6,
#boatSelectionDiv .col-sm-3,
#boatSelectionDiv .col-md-2 {
  width: 320px !important;
  max-width: 100% !important;
  flex: 0 0 320px !important;
  padding: 0 !important;
}

.boatThumbnail {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: all .25s ease;
}

.boatThumbnail:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(7, 29, 51, 0.18);
}

.boatThumbnail .thumb {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  background: #e8edf3;
}

.boatThumbnail .designator {
  padding: 20px 20px 76px;
  text-align: center;
  background: #fff;
}

.boatThumbnail .designator img {
  max-height: 50px;
  object-fit: contain;
}

.boatThumbnail:after {
  content: "Build This Boat";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  letter-spacing: .2px;
  transition: all .25s ease;
}

.boatThumbnail:hover:after {
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

/* ================================
   OPTIONS / BUILD PAGE
================================ */

#colorsOptionsDiv {
  background: var(--bg);
  padding-bottom: 110px;
}

#Headerimg {
  width: 100%;
  height: auto !important;
  max-height: 520px;
  object-fit: contain !important;
  object-position: center center;
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

#boattitle {
  text-align: center;
  padding: 26px 15px 12px;
  background: #fff;
}

#boattitle img {
  max-height: 80px;
  object-fit: contain;
}

#speccontainerright,
.optioncontent,
#standardEquipment {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 18px auto 35px;
  padding: 25px;
  max-width: 1220px;
}

#specbox .spectable table {
  width: 100%;
}

#specbox td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.specmetric {
  color: var(--muted);
}

#planimage {
  padding: 15px;
}

#planimage img {
  border-radius: 16px;
  background: #f8fafc;
}

/* Color render box */
#ColorToolSection {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 18px;
  overflow: hidden;
}

#ColorToolSection .col-md-12 {
  min-height: 260px;
}

/* Option sections */
.OptionSection {
  background: var(--navy) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 14px;
  margin: 12px 0 0;
  padding: 14px 18px !important;
  font-size: 17px;
  font-weight: 700;
}

.OptionSection .fa {
  color: #fff;
}

.optionbox {
  margin-bottom: 20px;
}

.optionrow,
#optionalEquipment table tr {
  background: #fff;
  transition: background .2s ease;
}

.optionrow:hover,
#optionalEquipment table tr:hover {
  background: #f7fbff;
}

.optiontext,
.optionalEquipmentLineItem {
  display: inline-block;
  padding: 10px 6px;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
}

.optioncost {
  padding: 10px;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.optioncostselected {
  background: #e6f6ff !important;
  color: var(--blue) !important;
}

.radioButton,
.checkBox {
  width: 22px;
  height: 22px;
  border: 2px solid #c7d2de;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 8px;
  background: #fff;
  transition: all .2s ease;
}

.checkBox {
  border-radius: 7px;
}

.radioButtonChecked,
.checkboxChecked {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  box-shadow: inset 0 0 0 4px #fff;
}

.colorSwatch {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  cursor: pointer;
}

.colorSwatchSub {
  width: 50%;
  height: 100%;
  margin-left: 50%;
}

/* Standard features */
.standardFeature {
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--border);
  color: #344054;
  position: relative;
}

.standardFeature:before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--blue);
  font-weight: bold;
}

.optiontitle {
  color: var(--navy);
  font-weight: 800;
  margin: 20px 0 10px;
  font-size: 16px;
}

/* ================================
   SUMMARY / PRICE
================================ */

#yourCustomBuild {
  max-width: 1220px;
  margin: 25px auto;
}

#finalprice {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px;
}

.finalPriceTable {
  width: 100%;
}

.priceFontSize {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.costFontSize {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
}

.priceDisclaimerText {
  color: var(--muted);
  font-size: 12px;
}

.costTable {
  width: 100%;
}

.costTable td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.costTableHeader h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 20px 0 5px;
}

.editOptions {
  display: inline-block;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
}

.btnFinalize,
.sendBuildButton,
button.btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--navy)) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 13px 22px !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 20px rgba(14,165,233,.25);
}

/* ================================
   RFQ FORM
================================ */

#rfqDialog {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.formHeader {
  background: linear-gradient(135deg, var(--navy), var(--navy2)) !important;
  padding: 24px;
  text-align: center;
}

.formHeader img {
  max-width: 280px;
}

.form-control {
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  padding: 12px 14px !important;
  min-height: 46px;
  box-shadow: none !important;
}

.form-control:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.12) !important;
}

.B1,
.btn {
  border-radius: 999px !important;
  padding: 11px 22px !important;
  background: var(--navy);
  color: #fff;
  border: 0;
}

.B1:hover,
.btn:hover {
  background: var(--blue);
  color: #fff;
}

.requiredSign {
  color: #e11d48;
}

/* ================================
   FLOATING FOOTER
================================ */

#footerFloat {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.optionfooter {
  background: rgba(7,29,51,.96) !important;
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.18);
}

.optionfooter a {
  color: #fff !important;
  font-weight: 700;
}

.optionfooter a:hover,
.stepcurrent {
  color: var(--blue) !important;
}

.optionfootermenu {
  text-align: right;
}

.optionfootertext {
  display: inline-block;
}

/* ================================
   UTILITIES / OLD SUPPORT
================================ */

.text-80 { font-size: .8em; }
.text-60 { font-size: .6em; }

.fancybox-button--play,
.fancybox-button--pause {
  display: none !important;
}

.bkgdDim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 29, 51, .65);
  z-index: 998;
}

.gallery,
.majorDiv {
  width: 100%;
}

.collapse.show {
  display: block;
}

.strikethroughCost {
  text-decoration: line-through;
  color: #98a2b3;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 992px) {
  #boatSelectionDiv .col-xs-6,
  #boatSelectionDiv .col-sm-3,
  #boatSelectionDiv .col-md-2 {
    width: 46% !important;
    flex: 0 0 46% !important;
  }

  #speccontainerright,
  .optioncontent,
  #standardEquipment {
    margin-left: 14px;
    margin-right: 14px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
  }

  #boatSelectionDiv {
    padding: 25px 14px 120px;
  }

  #boatSelectionDiv:before {
    font-size: 34px;
  }

  #boatSelectionDiv:after {
    font-size: 14px;
    padding: 0 15px;
  }

  .PageSection {
    font-size: 22px;
    padding: 14px 8px;
  }

  #boatSelectionDiv .row {
    gap: 20px;
  }

  #boatSelectionDiv .col-xs-6,
  #boatSelectionDiv .col-sm-3,
  #boatSelectionDiv .col-md-2 {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .boatThumbnail .thumb {
    height: 215px;
  }

  #Headerimg {
    max-height: 260px;
  }

  #speccontainerright,
  .optioncontent,
  #standardEquipment {
    padding: 16px;
    border-radius: 18px;
  }

  .columnarlayout .leftcolumn,
  .columnarlayout .rightcolumn,
  .stleftcolumn,
  .stmidcolumn,
  .strightcolumn {
    width: 100% !important;
  }

  .finalPriceTable,
  .finalPriceTable tbody,
  .finalPriceTable tr,
  .finalPriceTable td {
    display: block;
    width: 100%;
    text-align: center !important;
  }

  .costFontSize {
    display: block;
    margin: 12px 0;
  }

  .optionfooter {
    text-align: center;
    padding: 12px 10px;
  }

  .optionfootermenu {
    display: none;
  }

  .optionfootertext {
    font-size: 13px;
  }
}
/* PHASE 2 - Better build page UX */

.buildTopBar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7, 29, 51, .96);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.backModelsBtn {
  background: #fff;
  color: #071d33 !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.buildStepsText {
  font-weight: 700;
  opacity: .9;
}

.boatHeroWrap {
  position: relative;
  background: #071d33;
}


.boatHeroOverlay {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: rgba(7,29,51,.75);
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.boatHeroOverlay h1 {
  color: #fff;
  margin: 0;
  font-size: 34px;
  font-weight: 800;
}

#planimage img {
  cursor: zoom-in;
  transition: .25s ease;
}

#planimage img:hover {
  transform: scale(1.03);
}

.lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightboxOverlay img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 18px;
}

.lightboxOverlay span {
  position: fixed;
  top: 18px;
  right: 25px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

@media(max-width:768px){
  .buildTopBar {
    padding: 10px;
  }

  .buildStepsText {
    font-size: 12px;
  }

  #Headerimg {
    height: 280px;
  }

  .boatHeroOverlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .boatHeroOverlay h1 {
    font-size: 24px;
  }
}

/* ================================
   PHASE 3 - REAL CONFIGURATOR UX
================================ */

#boatSelectionDiv {
  padding-bottom: 140px !important;
}

.boatThumbnail {
  min-height: 360px;
}

.boatThumbnail::after {
  pointer-events: none;
}

.boatThumbnail:hover {
  cursor: pointer;
}

.boatThumbnail .thumb {
  object-fit: contain !important;
  background: linear-gradient(180deg, #f7fafc, #e8eef5);
  padding: 10px;
}

/* sticky configurator top bar */
.buildTopBar {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(7, 29, 51, .97);
  backdrop-filter: blur(16px);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
}

.backModelsBtn,
.mobileQuoteBtn {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}

.backModelsBtn {
  background: #fff;
  color: #071d33;
}

.mobileQuoteBtn {
  background: #0ea5e9;
  color: #fff;
}

.buildStepPills {
  display: flex;
  gap: 8px;
  align-items: center;
}

.buildStepPills span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 700;
}

.buildStepPills .active {
  background: #0ea5e9;
}

/* hero image fixed: show full photo, not cropped */
.boatHeroWrap {
  background: linear-gradient(135deg, #071d33, #102f4b);
  padding: 22px;
}

#Headerimg {
  width: 100%;
  height: auto !important;
  max-height: 520px;
  object-fit: contain !important;
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.boatHeroInfo {
  max-width: 1220px;
  margin: 18px auto 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.boatHeroInfo h1 {
  color: #fff;
  margin: 0;
  font-size: 34px;
  font-weight: 900;
}

.boatHeroInfo p {
  margin: 5px 0 0;
  opacity: .8;
}

/* option search */
.optionSearchBox {
  max-width: 1220px;
  margin: 20px auto;
  padding: 0 14px;
}

.optionSearchBox input {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  padding: 15px 20px;
  box-shadow: 0 10px 25px rgba(7,29,51,.08);
  font-weight: 600;
}

/* better option rows */
#optionalEquipment table,
#colorSelections table {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}

#optionalEquipment tr,
#colorSelections tr {
  border-bottom: 1px solid #edf1f5;
}

#optionalEquipment tr:hover,
#colorSelections tr:hover {
  background: #eef8ff !important;
}

/* selected bottom bar */
.selectedBuildBar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 72px;
  z-index: 2500;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border: 1px solid #e5eaf0;
  box-shadow: 0 14px 40px rgba(7,29,51,.18);
  border-radius: 18px;
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.selectedBuildBar strong {
  color: #071d33;
}

.selectedBuildBar button {
  background: #071d33;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
}

/* lightbox */
.lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightboxOverlay img {
  max-width: 96%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.lightboxOverlay span {
  position: fixed;
  top: 15px;
  right: 24px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

/* mobile + ipad */
@media (max-width: 1024px) {
  .boatHeroWrap {
    padding: 14px;
  }

  #Headerimg {
    max-height: 430px;
  }

  .boatHeroInfo {
    padding: 0 6px;
  }
}

@media (max-width: 768px) {
  .buildTopBar {
    padding: 10px;
    gap: 8px;
  }

  .backModelsBtn,
  .mobileQuoteBtn {
    padding: 9px 12px;
    font-size: 12px;
  }

  .buildStepPills span {
    display: none;
  }

  .buildStepPills .active {
    display: inline-block;
  }

  #Headerimg {
    max-height: 310px;
    border-radius: 18px;
  }

  .boatHeroInfo {
    display: block;
    text-align: center;
  }

  .boatHeroInfo h1 {
    font-size: 26px;
  }

  .selectedBuildBar {
    bottom: 62px;
    left: 8px;
    right: 8px;
    padding: 10px;
  }

  .selectedBuildBar button {
    padding: 10px 12px;
    font-size: 12px;
  }
}
.boatThumbnail {
  cursor: pointer;
}

.buildBoatBtn {
  display: block;
  width: calc(100% - 40px);
  margin: 16px auto 20px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: #071d33;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.buildBoatBtn:hover {
  background: #0ea5e9;
}

#Headerimg {
  width: 100%;
  height: auto !important;
  max-height: 520px;
  object-fit: contain !important;
  object-position: center;
  background: #fff;
  display: block;
  padding: 8px;
}
