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

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

/* === 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: -1;
  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: 32px;
  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: #002b5c;
  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: #003366;
  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: #003366;
  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: #002b5c;
  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: 10;
  padding: 0 20px;
}

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

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

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

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

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

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



/* === 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: #003366;
  text-align: center;
}

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

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

.info-card p {
  font-size: 18px;
  color: #003366;      /* 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: #003366;
  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: #003366;
  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: #00224d;
}

.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: 200;
}

.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: #003366;
  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: #003366;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.job-box {
  background: #ffffff;
  border: 1px solid #dce3ea;
  border-left: 4px solid #003366;
  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: #002b5c;
  margin: 0;
}

/* === View Job Description Button === */
.job-box a {
  background-color: #002b5c;
  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: #004080;
}

/* === 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: #0d1b2a;
  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: #f9fbfd;
  padding: 80px 20px;
  text-align: center;
}

.careers-intro-title {
  font-size: 34px;
  color: #003366;
  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: #003366;
  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: #003366;
  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 #003366;
  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: #0d1b2a;
}

/* Button aligned to the right inside job box */
.job-box a {
  background-color: #003366;
  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: #001f4d;
}

/* 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: #0d1b2a;
  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: #003366;
  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 #003366;
  color: #003366;
  font-size: 22px;
  font-weight: 900;
  font-family: 'Arial Black', 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: #003366;       /* 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: #003366;
  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: #003366;            /* 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: #003366;
  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: #00254d;
}
*/

/* === 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: #003366;
  margin: 0;
}

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

.faq-arrows button {
  background: #003366;
  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: #005199;
}

/* === 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: #003366;
  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: #003366;
}

.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 {
  background-color: #fff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.difference-header h2 {
  font-size: 32px;
  color: #003366;
  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: #f0f4fa;
  padding: 18px 12px; /* More padding for better spacing */
  font-weight: bold;
  color: #003366;
  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: #003366;
  color: #fff;
  border-color: #003366;
}

.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: #003366;
}

/* === 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: #0d1b2a;
  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: #003366;
  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: 'Helvetica Neue', Helvetica, 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 #003366;
  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: #003366;
  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: #003366;
  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: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
  padding: 40px 20px;
}

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

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

.privacy-policy h3 {
  font-size: 20px;
  color: #003366;
  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: #003366;
}

/* === 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: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

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

.terms-page h2 {
  font-size: 24px;
  color: #003366;
  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: #003366;
}





/* 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: #001f3f; /* 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: #001f3f;
  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: #003366; /* 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: #003366;
  border: 2px solid #003366;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-link:hover {
  background: #003366;
  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 */
  }
}