i* {
  box-sizing: border-box;
}

/* === INDEX SECTION === */ /* === INDEX SECTION === */ /* === INDEX SECTION === */ /* === INDEX SECTION === */ /* === INDEX SECTION === */ /* === INDEX SECTION === */

/* === FORCE ALL H2 TO NAUTILUS BLUE === */
h2 {
  color: #082d4a;
}

/* === BASE RESET === */
* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

/* === HERO VIDEO === */
/* === HERO VIDEO === */
.hero-video {
  position: relative; /* was fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* one viewport height tall */
  z-index: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* === COUNTDOWN BANNER === */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0d1b2a;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* === TOP BAR === */
.top-bar {
  position: fixed;
  top: 33px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(6px);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* === LOGOS === */
.logo-full {
  height: 42px;
  display: block;
  margin-right: 24px; /* Adds spacing between logo and nav */
}

.logo-mobile {
  height: 32px;
  display: none;
}

/* === NAV LINKS === */
.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: #082d4a;
  font-size: 16px;
}

/* === CTA GROUP === */
.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto; /* Pushes it to the far right */
}


.cta-button {
  background: #082d4a;
  color: white;
  padding: 10px 20px;
  margin-left: 12px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.phone {
  font-weight: bold;
  color: #082d4a;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1;
  margin: 0;
  padding: 0;
  display: inline-block;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* === MOBILE NAV DROPDOWN === */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  padding: 16px 24px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  color: #082d4a;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* === PAGE SECTION WRAPPER === */
.page-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 950px) {
  .nav-links {
    display: none;
  }

  .phone {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-full {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

@media (min-width: 950px) {
  .mobile-nav {
    display: none !important;
  }
}

/* === GALLERY === */ /* === GALLERY === */ /* === GALLERY === */ /* === GALLERY === */ /* === GALLERY === */ /* === GALLERY === */ /* === GALLERY === */

/* === SNAP SCROLL GALLERY === */
.gallery-container {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-container img {
  width: 100%;              /* fill screen width */
  height: 100vh;            /* fill screen height */
  object-fit: cover;        /* zoom/crop to always cover */
  object-position: center;  /* keep subject centered */
  scroll-snap-align: start; /* snap to top on scroll */
  display: block;
}

/* === HERO OVERLAY === */ /* === HERO OVERLAY === */ /* === HERO OVERLAY === */ /* === HERO OVERLAY === */ /* === HERO OVERLAY === */ /* === HERO OVERLAY === */


.hero-overlay-text {
  position: absolute;
  top: 25%;
  left: 15%;
  color: white;
  text-align: left;
  z-index: 2;
  padding: 0 20px;
}

.hero-overlay-text h1 {
  font-size: 60px;
  font-weight: 525;
  margin-bottom: 16px;
  z-index: 2;
}

.hero-overlay-text p {
  font-size: 18px;
  font-weight: 400;
  z-index: 2;
}

@media screen and (max-width: 950px) {

 .hero-overlay-text {
   position: absolute;
   top: 25%;
   left: 15%;
   color: white;
   text-align: left;
   z-index: 2;
   padding: 0 20px;
 }

 .hero-overlay-text h1 {
   font-size: 60px;
   font-weight: 500;
   margin-bottom: 16px;
   z-index: 2;
 }

 .hero-overlay-text p {
   font-size: 18px;
   font-weight: 400;
   z-index: 2;
 }
}



/* === INFO CARD SECTION === */ /* === INFO CARD SECTION === */ /* === INFO CARD SECTION === */ /* === INFO CARD SECTION === */ /* === INFO CARD SECTION === */
.info-card {
  background: rgba(255, 255, 255, 0.85); /* or simply: white */
  padding: 32px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 800px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.info-card h1 {
  font-size: 50px;
  font-weight: 798;
  margin-bottom: 7px;
  color: #082d4a;
  text-align: center;
}

.info-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #082d4a;
  text-align: left;
}

.limited-offer-text {
  font-size: 16px;
  font-weight: 600;
  color: #082d4a;      /* Nautilus blue */
  text-align: center;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 18px;
  color: #082d4a;      /* Nautilus blue */
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.info-form {
  font-size: 18px;
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: #082d4a;
  outline: none;
  background: #fff;
}

.full-width {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  margin-bottom: 14px;
}

.info-form label {
  font-weight: 600;
  color: #666;
  font-size: 14px;
  margin: 6px 0 -4px 2px;
  display: inline-block;
}

.info-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px; /* adjust top/bottom spacing as needed */
  width: 100%;
}


/* Submit button */

.cta-button {
  background: #082d4a;
  color: white;
  padding: 14px 0;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: center;
}


.cta-button:hover {
  background: #082d4a;
}

.form-button-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* === Popup and Thank You Modal === */ /* === Popup and Thank You Modal === */ /* === Popup and Thank You Modal === */ /* === Popup and Thank You Modal === */
.popup,
.thankyou {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.popup-content,
.thankyou-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.popup-content {
  position: relative; /* required for .dismiss-x */
  padding: 30px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch; /* <--- changed from center to stretch */
  gap: 20px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box; /* <--- added to prevent overflow issues */
}


.popup-content h2 {
  font-size: 22px;
  margin: 0;
}

.popup-content input[type="tel"] {
  width: 100%;
  padding: 14px 16px; /* match button padding */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}


.popup-content button {
  background: #082d4a;
  color: white;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600; /* <-- makes it bold */
  cursor: pointer;
  width: 100%;       /* <-- makes it match input width */
  transition: background 0.3s ease;
}

.dismiss-x {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 28px;
  height: 28px;
  font-size: 26px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  z-index: 10;
}

.dismiss-x::before {
  content: "×";
  display: block;
}


/* Header-specific CTA spacing */
.top-bar .cta-button {
  padding: 10px 24px; /* more breathing room inside the button */
}


/* === CAREERS SECTION (Updated Grid + Cards) === */ /* === CAREERS SECTION (Updated Grid + Cards) === */  /* === CAREERS SECTION (Updated Grid + Cards) === */

/* === Careers Section Wrapper === */
.career-wrapper {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* === Columns Container === */
.career-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 20px;
}

/* === Individual Column === */
.career-column {
  flex: 1 1 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* === Category Title === */
.career-column h3 {
  font-size: 20px;
  color: #082d4a;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.job-box {
  background: #ffffff;
  border: 1px solid #dce3ea;
  border-left: 4px solid #082d4a;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;        /* was 520px */
  max-width: 100%;    /* prevent overflow */
  box-sizing: border-box; /* ensure padding fits inside width */
}

/* === Hover Effect === */
.job-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07);
}

/* === Job Title Text === */
.job-box h4 {
  font-size: 15px;
  font-weight: 600;
  color: #082d4a;
  margin: 0;
}

/* === View Job Description Button === */
.job-box a {
  background-color: #082d4a;
  color: white;
  font-weight: 600;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  transition: background-color 0.2s ease;
}

.job-box a:hover {
  background-color: #082d4a;
}

/* === Mobile Responsive === */
@media screen and (max-width: 950px) {
  .career-columns {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .career-column {
    max-width: 100%;
  }

  .job-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .job-box h4 {
    margin-bottom: 4px;
  }

  .job-box a {
    align-self: flex-start;
  }
}


/* === CAREERS HERO SECTION === */
.careers-hero {
  background-color: #082d4a;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  text-align: center;
}

@media screen and (min-width: 950px) {
  .careers-hero {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: center;
    gap: 60px;
  }
}

.careers-hero .hero-text {
  max-width: 600px;
}

.careers-hero .hero-text h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.careers-hero .hero-text p {
  font-size: 16px;
  line-height: 1.6;
}

.careers-hero .hero-image {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.careers-intro {
  background-color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.careers-intro-title {
  font-size: 34px;
  color: #082d4a;
  margin-bottom: 10px;
}

.careers-intro-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

.culture-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; /* balanced spacing for both row and column */
  max-width: 700px; /* reduced to center and pull cards closer */
  margin: 40px auto;
  padding: 0 10px;
  justify-items: center;
}


.culture-box {
  background: white;
  border: 1px solid #e0e6eb;
  border-radius: 12px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.culture-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.culture-box img {
  height: 48px;
  margin-bottom: 18px;
}

.culture-box h3 {
  font-size: 18px;
  color: #082d4a;
  margin-bottom: 10px;
}

.culture-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 950px) {
  .culture-values {
    flex-direction: column;
    align-items: center;
  }

  .culture-box {
    width: 90%;
  }
}

.benefits-grid-section {
  padding: 100px 20px 80px;
  background-color: #f9fafb; /* subtle light grey for section split */
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.benefit-item img {
  height: 64px;
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #082d4a;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive: stack to single column on mobile */
@media screen and (max-width: 950px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}

/* New Job Card Styling with Button Right */
.job-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #082d4a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.job-box h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #082d4a;
}

/* Button aligned to the right inside job box */
.job-box a {
  background-color: #082d4a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.job-box a:hover {
  background-color: #082d4a;
}

/* Responsive stack for mobile */
@media screen and (max-width: 950px) {
  .career-columns {
    flex-direction: column;
    padding: 0 20px;
  }

  .career-column {
    width: 100%;
  }

  .job-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-box a {
    align-self: flex-start;
  }
}


/* === JOIN VALUES GRID === */
.benefits-grid-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.join-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.join-box {
  flex: 1 1 calc(33.333% - 40px); /* 3 items per row with gap */
  max-width: 300px;
  text-align: center;
}

.join-box img {
  height: 64px;
  margin-bottom: 16px;
}

.join-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #082d4a;
  margin-bottom: 8px;
}

.join-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive stacking for mobile */
@media screen and (max-width: 950px) {
  .join-box {
    flex: 1 1 100%;
    max-width: 90%;
  }
}



/* === SAFETY SECTION === */ /* === SAFETY SECTION === */ /* === SAFETY SECTION === */ /* === SAFETY SECTION === */ /* === SAFETY SECTION === */ /* === SAFETY SECTION === */

/* === SAFETY SECTION === */

.safety-header {
  text-align: center;
  padding: 100px 20px 40px;
}

.safety-title {
  font-size: 32px;
  color: #082d4a;
  margin-bottom: 8px;
}

.safety-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

/* === Force Vertical Stack === */
.safety-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  gap: 40px;
}

/* === Safety Left (Image Section) === */
.safety-left {
  width: 100%;
  max-width: 1100px;
}

.safety-photo-container {
  position: relative;
  width: 100%;
}

.safety-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* === Tooltip Marker === */
.marker {
  position: absolute;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border: 3px solid #082d4a;
  color: #082d4a;
  font-size: 22px;
  font-weight: 900;
  font-family: sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marker:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  padding: 10px 14px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  color: #333333;
  font-weight: 400; /* body text normal */
}

.tooltip strong {
  display: block;
  margin-bottom: 4px;
  color: #082d4a;       /* blue header */
  font-weight: 700;     /* bold */
}

.marker:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* === Feature Grid (Stacked Boxes) === */
.safety-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 20px;
  background-color: #f8f9fb;
}

.safety-feature {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.feature-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(0, 51, 102, 0.08); /* translucent navy */
  z-index: 0;
}

.safety-feature h3 {
  font-size: 20px;
  color: #082d4a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.safety-feature p {
  font-size: 15px;
  color: #444;
  position: relative;
  z-index: 1;
}
/* === CTA Banner Section === */
.cta-section {
  background-color: #f6f9fc; /* Nautilus light grey */
  color: #082d4a;            /* Nautilus blue */
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: inherit;
}

.cta-section p {
  font-size: 16px;
  color: inherit;
  margin: 0;
}

/* Optional CTA Button Style (uncomment if needed) */
/*
.cta-section .cta-button {
  background-color: #082d4a;
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.cta-section .cta-button:hover {
  background-color: #082d4a;
}
*/

/* === Responsive Adjustments === */
@media (max-width: 950px) {
  .cta-section {
    padding: 40px 16px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .cta-section .cta-button {
    font-size: 15px;
    padding: 12px;
  }
}

/* === carsoal === */ /* === carsoal === */ /* === carsoal === */ /* === carsoal === */ /* === carsoal === */ /* === carsoal === */

/* === FAQ Carousel Section === */
.faq-carousel-section {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

/* === Title and Arrows Container === */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-carousel-title {
  font-size: 28px;
  color: #082d4a;
  margin: 0;
}

/* === Arrow Buttons === */
.faq-arrows {
  display: flex;
  gap: 12px;
}

.faq-arrows button {
  background: #082d4a;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.faq-arrows button:hover {
  background: #082d4a;
}

/* === Carousel Container (wrapper) === */
.faq-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* === Scrollable Strip === */
.faq-carousel {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding: 120px 20px;
}

.faq-carousel::-webkit-scrollbar {
  display: none;
}

/* === Individual Card === */
.faq-card {
  flex: 0 0 300px;
  min-height: 200px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 -10px 30px rgba(0, 0, 0, 0.05);
  padding: 24px 20px;
  border-radius: 18px;
  text-align: left;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
  transform: scale(0.88);
  pointer-events: none;
}

/* === Centered Card === */
.faq-card.centered {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* === Card Text Styling === */
.faq-card h4 {
  color: #082d4a;
  font-size: 16px;
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* === Responsive Sizing === */
@media (max-width: 950px) {
  .faq-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .faq-card {
    flex: 0 0 85%;
  }
}

/* === ABOUT US SECTION === */ /* === ABOUT US SECTION === */ /* === ABOUT US SECTION === */ /* === ABOUT US SECTION === */ /* === ABOUT US SECTION === */



/* === About Page Layout === */
.about-hero {
  padding: 160px 20px 60px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-image img {
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  height: auto;
}

.about-text {
  max-width: 600px;
}

.about-text h1 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #082d4a;
}

.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text h5 {
  color: #888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Interactive Section === */

.about-difference {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.difference-header h2 {
  font-size: 32px;
  color: #082d4a;
  margin-bottom: 12px;
}

.difference-header p {
  font-size: 16px;
  color: #333;
}

.difference-selector {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.selector-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Force 5 per row */
  gap: 12px;
  max-width: 100%;
}

.selector-list li {
  background: #082d4a;
  padding: 18px 12px; /* More padding for better spacing */
  font-weight: bold;
  color: #f1f3f5;
  font-size: 16px; /* Increased font size */
  line-height: 1.4; /* Better spacing between lines */
  word-break: break-word;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 70px; /* Taller box to accommodate 2 lines */
  display: flex;
  align-items: center;
  justify-content: center;
}


.selector-list li.active,
.selector-list li:hover {
  background: #082d4a;
  color: #fff;
  border-color: #082d4a;
}

.selector-panel {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.selector-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 100%;      /* allow it to use full width of panel */
  margin: 0;            /* remove auto-centering */
  text-align: left;     /* keep clean left alignment */
}


.selector-panel h3 {
  margin-top: 0;
  color: #082d4a;
}

/* === MEDIA SECTION - ABOUT US === */


@media screen and (max-width: 950px) {
  .selector-list {
    grid-template-columns: repeat(2, 1fr); /* Switch to 2 per row */
  }
}

@media screen and (max-width: 950px) {
  .selector-list {
    grid-template-columns: 1fr; /* Stack vertically */
  }
}


/* === FOOTER SECTION === */ /* === FOOTER SECTION === */ /* === FOOTER SECTION === */ /* === FOOTER SECTION === */ /* === FOOTER SECTION === */ /* === FOOTER SECTION === */

/* === Clean Minimalist Footer === */

.nautilus-footer {
  background-color: #082d4a;
  color: #ffffff;
  padding: 12px 20px;
  font-family: sans-serif;
  font-size: 13px;
  margin-top: auto;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 0;
  gap: 10px;
}

/* Left Section */
.footer-left {
  flex: 1;
  text-align: left;
  color: #ffffffcc;
}

/* Center Social Icons */
.footer-center {
  flex: 1;
  text-align: center;
}

.footer-center a {
  margin: 0 6px;
  display: inline-block;
}

.footer-center img {
  width: 18px;
  height: 18px;
  max-width: 24px;
  max-height: 24px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}


/* Right Policy Links */
.footer-right {
  flex: 1;
  text-align: right;
}

.footer-right a {
  margin-left: 12px;
  color: #ffffffcc;
  text-decoration: none;
  font-size: 13px;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Responsive Layout */
@media screen and (max-width: 950px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
  }
}

/* Page Stretch Support */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}

/* === Footer City Links (Clean, No Background/Box) === */
.footer-city-links {
  background-color: transparent; /* Remove background */
  padding: 0 20px 10px;          /* Minimal padding */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;

  font-family: sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: none;
}

.footer-city-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 4px 8px;
  border: none; /* Remove border */
  border-radius: 4px;
  transition: color 0.3s ease;
}

.footer-city-links a:hover {
  color: #ffffffcc; /* Slight fade on hover */
}

/* === FOOTER IMAGE LINKS === */ /* === FOOTER IMAGE LINKS === */ /* === FOOTER IMAGE LINKS === */ /* === FOOTER IMAGE LINKS === */ /* === FOOTER IMAGE LINKS === */


/* === SUB LOCATIONS SECTION === */ /* === SUB LOCATIONS SECTION === */ /* === SUB LOCATIONS SECTION === */ /* === SUB LOCATIONS SECTION === */

/* === LOCATIONS PAGE STYLES (UPDATED) === */
body.locations-main {
  background-color: #f6f9fc;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

/* === Service Area Section === */
.service-area-section {
  text-align: center;
  padding: 100px 20px 40px;
  background: #fff;
}

.service-area-section h1 {
  font-size: 28px;
  color: #082d4a;
  margin-bottom: 12px;
}

.service-area-section .subheading {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.map-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* New background setup */
  background: url("../locations/locations-images/locations.png") no-repeat center center;
  background-size: contain;   /* show entire circle */
  aspect-ratio: 1.210153482880756 / 1;       /* keeps container responsive */
}

.map-image {
  width: 100%;      /* scales image with wrapper */
  height: auto;     /* keeps aspect ratio */
  display: block;
}


/* === Footer City Links === */
.footer-city-links {
  background: #ffffffee;
  backdrop-filter: blur(4px);
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centered on wider screens */
  gap: 20px 32px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: auto; /* keep pinned to bottom if using flex column layout */
}

.footer-city-links a {
  color: #002b5c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-city-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media screen and (max-width: 950px) {
  .footer-city-links {
    justify-content: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .footer-city-links a {
    font-size: 15px;
  }
}

/* === TORONTO PAGE SECTION STYLES === */

body.locations-page {
  background-color: #f6f9fc;
}

/* === Location Highlight Section === */
.location-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f9fb;
  padding: 140px 20px 60px;
  text-align: center;
}

@media screen and (min-width: 950px) {
  .location-highlight {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 60px;
  }
}

.location-highlight img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
}

.location-text {
  max-width: 500px;
}

.location-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #0d1b2a;
}

.location-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* === Event Section === */
.event-section {
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.event-section h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #0d1b2a;
  font-weight: 700;
}

.event-box {
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  border: 3px solid #082d4a;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-top: 24px;
}

.event-box:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 51, 102, 0.25);
}

.event-box h4 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #082d4a;
  font-weight: 700;
}

.event-box p {
  margin: 6px 0;
  font-size: 16px;
  color: #333;
}

.event-box {
  margin-top: 14px;
  font-weight: 400;        /* Normal font weight */
  color: #222222;          /* Neutral dark text instead of Nautilus blue */
  font-size: 15px;
  line-height: 1.6;
}


/* === Steps Shared Section Styling === */
.steps-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.steps-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
  color: #0d1b2a;
  font-weight: 700;
}

/* === Visual Step Boxes === */
.steps-visual {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.step-box {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 48px 28px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-box .step-number {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 700;
  color: #d0d7e3;
  z-index: 0;
  text-align: center;
}

.step-box h4 {
  font-size: 22px;
  color: #082d4a;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* === Optional Reusable Hover Classes === */
.event-box,
.step-box,
.feature-box,
.safety-feature {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-box:hover,
.step-box:hover,
.feature-box:hover,
.safety-feature {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
/* === PRIVACY POLICY === */ /* === PRIVACY POLICY === */ /* === PRIVACY POLICY === */ /* === PRIVACY POLICY === */ /* === PRIVACY POLICY === */ /* === PRIVACY POLICY === */


/* === PRIVACY POLICY STYLING === */

.privacy-policy {
  font-family: sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
  padding: 40px 20px;
}

.privacy-policy h1 {
  font-size: 36px;
  color: #082d4a;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy h2 {
  font-size: 24px;
  color: #082d4a;
  margin-top: 40px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 4px;
}

.privacy-policy h3 {
  font-size: 20px;
  color: #082d4a;
  margin-top: 25px;
  margin-bottom: 6px;
}

.privacy-policy p {
  margin: 14px 0;
}

.privacy-policy ul {
  padding-left: 20px;
  margin-top: 10px;
}

.privacy-policy ul li {
  margin-bottom: 8px;
}

.privacy-policy a {
  color: #0055aa;
  text-decoration: underline;
}

.privacy-policy a:hover {
  color: #082d4a;
}

/* === TERMS === */ /* === TERMS === */ /* === TERMS === */ /* === TERMS === */ /* === TERMS === */ /* === TERMS === */ /* === TERMS === */ /* === TERMS === */


/* === TERMS OF SERVICE PAGE STYLING === */

.terms-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
  background-color: #ffffff;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.terms-page h1 {
  font-size: 36px;
  color: #082d4a;
  text-align: center;
  margin-bottom: 30px;
}

.terms-page h2 {
  font-size: 24px;
  color: #082d4a;
  margin-top: 40px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 6px;
}

.terms-page p {
  margin: 14px 0;
}

.terms-page ul {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.terms-page ul li {
  margin-bottom: 8px;
}

.terms-page a {
  color: #0055aa;
  text-decoration: underline;
}

.terms-page a:hover {
  color: #082d4a;
}





/* TOP BAR MOBILE */ /* TOP BAR MOBILE */ /* TOP BAR MOBILE */ /* TOP BAR MOBILE */ /* TOP BAR MOBILE *//* TOP BAR MOBILE */ /* TOP BAR MOBILE */ /* TOP BAR MOBILE */


@media (max-width: 950px) {
  .countdown-bar {
    font-size: 10px;
    padding: 10px 0px;
  }
}


/* === COOKIE CONSENT STYLES === */ /* === COOKIE CONSENT STYLES === */ /* === COOKIE CONSENT STYLES === */ /* === COOKIE CONSENT STYLES === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #082d4a; /* Dark Nautilus Blue */
  color: #ffffff;
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.cookie-consent p {
  margin: 0;
  flex: 1 1 70%;
  line-height: 1.4;
}

.cookie-consent a {
  color: #66b2ff;
  text-decoration: underline;
}

.cookie-consent button {
  background: #ffffff;
  color: #082d4a;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 8px;
  margin-left: 20px;
  flex: 0 0 auto;
  transition: background 0.2s ease;
}

.cookie-consent button:hover {
  background: #f0f0f0;
}

.hidden {
  display: none;
}



/* === NEW SCROLL SECTIONS === */ /* === NEW SCROLL SECTIONS === */ /* === NEW SCROLL SECTIONS === */ /* === NEW SCROLL SECTIONS === */ /* === NEW SCROLL SECTIONS === */


  
.process-section,
.safety-section,
.sustainability-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9; /* light neutral background */
  border-top: 1px solid #eee;
}

.process-section:nth-of-type(1n),
.safety-section:nth-of-type(1n),
.sustainability-section:nth-of-type(1n) {
  background: #fff; /* alternate white background for contrast */
}

.process-section h2,
.safety-section h2,
.sustainability-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #082d4a; /* Nautilus Blue (from your palette) */
}

.process-section p,
.safety-section p,
.sustainability-section p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.section-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #082d4a;
  border: 2px solid #082d4a;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-link:hover {
  background: #082d4a;
  color: #fff;
}




/* Sweepstakes page layout */ /* Sweepstakes page layout */ /* Sweepstakes page layout */ /* Sweepstakes page layout */ /* Sweepstakes page layout */ /* Sweepstakes page layout */
/* --- HERO LAYOUT --- */
/* Sweepstakes page layout */
/* --- HERO LAYOUT --- */
.video-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Fullscreen video background */
.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Floating signup card overlay */
.info-card-wrapper.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  z-index: 2;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  padding: 30px;
  text-align: center;
}

/* --- CONTENT BELOW HERO --- */
.cta-section {
  position: relative;
  background-color: #f5f8fb;
  width: 100%;
  padding: 100px 0;
  z-index: 2;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .info-card-wrapper.overlay {
    top: 60%; /* moved lower to avoid top nav */
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    padding: 0 10px;
  }

  .info-card {
    padding: 20px;
  }

  .video-hero video {
    height: 100vh;
  }
}

@media (max-width: 600px) {
  .info-card-wrapper.overlay {
    top: 65%; /* slightly lower for very small screens */
  }
}









FIX










/* --- Force popup centering regardless of parent containers --- */
.popup {
  position: fixed !important;
  inset: 0 !important; /* shorthand for top/left/right/bottom 0 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important; /* ensure it sits above nav/header */
}





.location-selector {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 480px;
  margin: 0 auto 35px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.location-selector h2 {
  margin-bottom: 10px;
}

.location-dropdown {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}




/* ============================================================
   REVIEW PAGE STYLES (ISOLATED + FINAL)
   ============================================================ */

/* ===============================
   BASE (REVIEW PAGE ONLY)
================================ */
.review-page {
  font-family: sans-serif;
  background-color: #f6f4ef;
  color: #1f1f1f;
  margin: 0;
}

.review-page * {
  box-sizing: border-box;
}

/* ===============================
   HERO VIDEO — FULL SCREEN
================================ */
.review-page .hero-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.review-page .hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===============================
   CENTERED REVIEW STACK
================================ */
.review-page .review-center {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 2;
}

/* ===============================
   SUSPENDED HEADLINE
================================ */
.review-page .review-headline {
  margin-bottom: 28px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
}

/* ===============================
   REVIEW CARD
================================ */
.review-page .review-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

/* ===============================
   STAR RATING (LOCK MECHANIC)
================================ */
.review-page .star-rating {
  border: none;
  text-align: center;
  margin-bottom: 24px;
  padding: 0;
}

.review-page .star-rating legend {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.review-page .stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.review-page .stars input {
  display: none;
}

.review-page .stars label {
  font-size: 40px;
  color: #c6cbd1;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.15s ease;
  user-select: none;
}

/* Hover preview */
.review-page .stars label:hover,
.review-page .stars label:hover ~ label {
  color: #f3b84f;
}

/* Locked state after click */
.review-page .stars input:checked ~ label {
  color: #f3b84f;
}

/* ===============================
   BUTTONS (NAUTILUS BLUE)
================================ */
.review-page .btn-primary {
  width: 100%;
  display: block;
  background: #082d4a;
  color: #ffffff;
  padding: 14px 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.review-page .btn-primary:hover {
  background: #082d4a;
}

/* Anchor-wrapped buttons */
.review-page a {
  display: block;
  text-decoration: none;
}

/* ===============================
   TEXT + FORMS
================================ */
.review-page h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.review-page p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.review-page label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: #444;
}

.review-page input[type="text"],
.review-page textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-family: sans-serif;
}

.review-page textarea {
  min-height: 120px;
  resize: vertical;
}

.review-page input:focus,
.review-page textarea:focus {
  outline: none;
  border-color: #082d4a;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .review-page .review-headline {
    font-size: 1.6rem;
    margin-bottom: 22px;
  }
}

.cta-phone {
  color: sans-serif;
  text-decoration: none;
  font-weight: 700;
}

.cta-phone:hover {
  text-decoration: underline;
}

/* CTA Banner (match info-card background + Nautilus blue text) */
.cta-banner {
  padding: 60px 20px;
  text-align: center;
  color: #082d4a;       /* Nautilus blue */
}

.cta-banner h2 {
  margin: 0 0 14px;
  color: #082d4a;
}

.cta-banner .cta-phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.cta-banner .cta-phone:hover {
  text-decoration: underline;
}

.cta-banner p {
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.6;
  color: #1f1f1f; /* slightly softer body tone */
}

.cta-button-instagram {
  background: linear-gradient(
    45deg,
    #feda75 0%,
    #fa7e1e 20%,
    #d62976 40%,
    #962fbf 70%,
    #4f5bd5 100%
  );
  background-size: 200% 200%;
  color: #ffffff;
  padding: 10px 20px;
  margin-left: 12px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}














/* Remove grey box styling */
.popup-offer-box {
  width: 100%;
  margin-top: 12px;
  padding: 0;
  border: none;
  background: none;
  text-align: center;
}

/* Simple Instagram gradient text (no animation) */
.popup-offer-title,
.popup-offer-timer {
  font-family: sans-serif;        /* match site font */
  font-weight: 400;            /* not bold */
  text-transform: none;        /* not capitalized */
  letter-spacing: 0;
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Same size for both lines */
.popup-offer-title {
  font-size: 16px;
  margin-bottom: 4px;
}

.popup-offer-timer {
  font-size: 16px;
}




.live-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  color: #8a8f98;
  font-family: sans-serif;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  flex-shrink: 0;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.35);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.45); opacity: 0.9; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.live-text {
  transition: opacity 200ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .live-dot::after { animation: none; }
  .live-text { transition: none; }
}


@media (max-width: 950px) {
  .steps-visual {
    justify-content: center;  /* centers the cards instead of left edge */
  }

  .step-box {
    margin-left: auto;
    margin-right: auto;       /* hard-centers each card */
    width: 100%;
    max-width: 420px;         /* optional: keeps a nice readable width */
  }
}












/* =================================================
   Shower Style Options — JBR Typography + Nautilus Blue
================================================= */

:root {
  --nautilus-blue: #082d4a;
}

/* Section */
.shower-options {
  padding: 56px 0;
  font-family: sans-serif;
  color: #000;
}

.shower-options__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Title */
.shower-options__title {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.25;
  color: #000;
}

/* Subtitle */
.shower-options__subtitle {
  margin: 18px auto 0;
  max-width: 860px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* =========================
   Tabs (Middle Selectors)
========================= */

.shower-tabs {
  margin-top: 36px;
}

.shower-tabs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.shower-tabs__tab {
  background: transparent;
  border: none;
  padding: 12px 0;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--nautilus-blue);
  position: relative;
}

/* underline */
.shower-tabs__tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: transparent;
  border-radius: 999px;
}

/* ACTIVE TAB */
.shower-tabs__tab.is-active::after {
  background: var(--nautilus-blue);
}

.shower-tabs__rule {
  margin-top: 14px;
  height: 2px;
  background: rgba(0,0,0,0.15);
}

/* =========================
   Panel Card
========================= */

.shower-panel {
  margin-top: 22px;
}

.shower-panel__card {
  background: #f3f3f3;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.shower-panel__media {
  min-height: 340px;
}

.shower-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.shower-panel__content {
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section Titles (Shower Pans / Safety Features etc.) */
.shower-panel__heading {
  margin: 0 0 12px 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--nautilus-blue);
}

.shower-panel__text {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* =========================
   Get My Free Quote Button
========================= */

.shower-panel__cta {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background: var(--nautilus-blue);
  color: #fff;
  transition: all 0.25s ease;
}

.shower-panel__cta:hover {
  background: #00264d;
}

/* =========================
   Responsive
========================= */

@media (max-width: 860px) {
  .shower-panel__card {
    grid-template-columns: 1fr;
  }

  .shower-panel__media {
    min-height: 240px;
  }
}





/* === Jacuzzi Photo Callout Section === */
.jbr-photo-callout {
  background: #f3f4f6;
  padding: 70px 20px;
}

.jbr-photo-callout__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title – match Nautilus section headers */
.jbr-photo-callout__title {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: #082d4a;
}

/* Subtitle – match normal paragraph text */
.jbr-photo-callout__subtitle {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #000;
}

/* Image */
.jbr-photo-callout__image-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.jbr-photo-callout__image {
  width: 100%;
  display: block;
  height: auto;
}

/* CTA */
.jbr-photo-callout__cta-wrap {
  margin-top: 28px;
}

.jbr-photo-callout__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #082d4a;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.jbr-photo-callout__button:hover {
  background: #00264d;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .jbr-photo-callout {
    padding: 56px 16px;
  }

  .jbr-photo-callout__subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .jbr-photo-callout__button {
    width: 100%;
    max-width: 320px;
  }
}

/* Phone CTA (same style as rest of site) */
.cta-phone {
  display: inline-block;
  margin: 18px 0;
  padding: 14px 24px;
  background: #0d3f75;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta-phone:hover {
  background: #0a2f55;
  transform: translateY(-1px);
}



/* =================================================
   JACUZZI PROMO SPLIT BANNER
================================================= */

.promo-split-banner {
  position: relative;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: sans-serif;
}

.promo-split-banner__inner {
  position: relative;
  overflow: visible;
  width: 100%;
  padding: 40px 44px;
  border-radius: 18px;
  background: #082d4a;
  box-shadow: 0 18px 34px rgba(0, 31, 56, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.promo-split-banner__left,
.promo-split-banner__right {
  position: relative;
  z-index: 2;
}

.promo-split-banner__left {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}

.promo-split-banner__right {
  flex: 0 0 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* HEADLINE */

.promo-split-banner__headline {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  font-weight: bold;
  font-weight: 800;
  color: #a9d2d6; /* Jacuzzi teal */
  letter-spacing: -0.03em;
}

/* PROMO LINE */

.promo-split-banner__subheadline {
  margin: 22px 0 0;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.promo-split-banner__subheadline sup {
  font-size: 0.42em;
  top: -0.8em;
  position: relative;
}

.promo-split-banner__plus {
  white-space: nowrap;
}

/* CREDIT TEXT */

.promo-split-banner__credit {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

/* OFFER DATE */

.promo-split-banner__date-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-split-banner__date-label {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}

.promo-split-banner__date {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

/* CTA BUTTON */

.promo-split-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 56px;
  padding: 0 26px;
  border: none;
  border-radius: 999px;
  background: #a9d2d6; /* Jacuzzi teal */
  color: #082d4a;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 31, 56, 0.25);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.promo-split-banner__button:hover {
  transform: translateY(-2px);
  background: #97c6ca;
  box-shadow: 0 14px 28px rgba(0, 31, 56, 0.28);
}

/* TERMS LINK */

.promo-split-banner__terms-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.promo-split-banner__terms {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
}

/* TOOLTIP */

.promo-split-banner__tooltip {
  position: absolute;
  top: calc(100% + 14px);
  right: 50%;
  transform: translateX(50%);
  width: min(340px, 80vw);
  background: #ffffff;
  color: #0a2d4a;
  text-align: left;
  border-radius: 6px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.promo-split-banner__tooltip::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 50%;
  transform: translateX(50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f4f1ea;
}

.promo-split-banner__tooltip p {
  margin: 0 0 12px;
}

.promo-split-banner__tooltip p:last-child {
  margin-bottom: 0;
}

.promo-split-banner__terms-wrap:hover .promo-split-banner__tooltip,
.promo-split-banner__terms-wrap:focus-within .promo-split-banner__tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* TABLET */

@media (max-width: 980px) {

  .promo-split-banner__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 22px;
    gap: 24px;
  }

  .promo-split-banner__right {
    flex: none;
    width: 100%;
  }

  .promo-split-banner__tooltip {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .promo-split-banner__tooltip::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

}

/* MOBILE */

@media (max-width: 640px) {

  .promo-split-banner {
    padding: 14px 8px 20px;
  }

  .promo-split-banner__inner {
    padding: 24px 16px;
    border-radius: 14px;
    box-shadow: 0 14px 24px rgba(0, 31, 56, 0.12);
  }

  .promo-split-banner__headline {
    font-size: 24px;
  }

  .promo-split-banner__subheadline {
    font-size: 16px;
  }

  .promo-split-banner__credit {
    font-size: 13px;
  }

  .promo-split-banner__button {
    width: 100%;
    max-width: 260px;
  }

  .promo-split-banner__tooltip {
    width: min(320px, calc(100vw - 30px));
    font-size: 11.5px;
  }

}

.promo-split-banner__inner {
  position: relative;
  overflow: visible;
  width: 100%;
  padding: 40px 44px;
  border-radius: 18px;
  background: #082d4a;
  box-shadow: 0 18px 34px rgba(0, 31, 56, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 2px solid rgba(169, 210, 214, 0.45);
}

.promo-split-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 56px;
  padding: 0 26px;
  border: none;
  border-radius: 999px;
  background: #a9d2d6;
  color: #082d4a;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 31, 56, 0.25);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  animation: promoButtonPulse 2.8s ease-in-out infinite;
}

@keyframes promoButtonPulse {
  0% { box-shadow: 0 10px 22px rgba(0, 31, 56, 0.25); }
  50% { box-shadow: 0 10px 28px rgba(169, 210, 214, 0.35); }
  100% { box-shadow: 0 10px 22px rgba(0, 31, 56, 0.25); }
}

/* === GLOBAL CTA BUTTON OVERRIDE === */
.cta-button,
#cta-trigger {
  background: #082d4a;   /* Jacuzzi blue */
  color: #ffffff;        /* white text */
  border: none;
}

.cta-button:hover,
#cta-trigger:hover {
  background: #00264d;   /* darker hover */
  color: #ffffff;        /* keep text white */
}