/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F5F5F7;
  color: #131722;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:focus, button:focus { outline: 2px solid #D4AF37; outline-offset: 2px; }

/* BRANDING FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #131722;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1rem;
  color: #23293e;
}
strong { font-weight: 700; }

/* LAYOUT CONTAINER */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 3px solid #D4AF37;
  box-shadow: 0 2px 12px 0 rgba(20,30,60,0.05);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.logo img { height: 48px; width: auto; display: block; }
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 0;
  color: #23293e;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #D4AF37;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  background: #D4AF37;
  color: #131722;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px 0 rgba(20,30,60,0.07);
  transition: background 0.20s, color 0.16s, box-shadow 0.22s, transform 0.18s;
  margin-left: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #131722;
  color: #D4AF37;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px 0 rgba(32,38,66,0.16);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #131722;
  margin-left: 14px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:hover { color: #D4AF37; background: rgba(212,175,55,0.07); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #131722;
  color: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.66,0,0.34,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 2.3rem;
  position: absolute;
  top: 20px; right: 32px;
  cursor: pointer;
  z-index: 1210;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.09em;
  padding: 12px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
  width: 80vw; text-align: center;
  margin: 0 auto;
}
.mobile-nav a:hover {
  background: #D4AF37;
  color: #131722;
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1024px) {
  .mobile-menu,.mobile-menu-close { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: #131722;
  color: #fff;
  margin-bottom: 60px;
  padding: 40px 0 50px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 36px -12px rgba(20,30,60,0.12);
  position: relative;
  overflow: hidden;
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero p {
  color: #f5f5f7;
  font-size: 1.15rem;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero .btn-primary { margin-top: 18px; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px -4px rgba(32,38,66,0.07);
}

@media (max-width: 768px) {
  .section { padding: 28px 6vw; margin-bottom: 40px; }
}

/* FLEXBOX LAYOUTS & SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f5f5f7;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(19,23,34,0.07);
  transition: box-shadow 0.23s, transform 0.18s;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 300px;
  padding: 24px 28px 24px 28px;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(19,23,34,0.18);
  transform: translateY(-2px) scale(1.017);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px -8px rgba(29, 32, 44, 0.09);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 740px;
  font-size: 1.06rem;
  color: #181a26;
  border-left: 5px solid #D4AF37;
  transition: box-shadow 0.22s, border 0.21s;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #131722;
  margin-left: 16px;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIFIC GRIDS ON PAGES */
.feature-grid,
.destination-grid,
.advantage-grid,
.executive-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 20px;
}
.feature-grid > div,
.destination-grid > div,
.advantage-grid > div,
.executive-bios > div {
  background: #f5f5f7;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(31,37,66,0.05);
  padding: 24px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature-grid > div:hover,
.destination-grid > div:hover,
.advantage-grid > div:hover,
.executive-bios > div:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 24px 0 rgba(19,23,34,0.16);
}
.feature-grid img,
.destination-grid img,
.advantage-grid img {
  width: 38px; height: 38px;
  margin-bottom: 10px;
}

.fleet-categories, .highlighted-models, .amenity-list, .luxury-hub-highlights,
.route-ideas, .package-descriptions, .inclusions-list, .modifiers-grid, .value-list {
  margin-bottom: 28px;
}
.modifiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.modifiers-grid > div {
  flex: 1 1 240px;
}

/*********** TABLES ***********/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(18,22,36,0.07);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 18px 16px;
  font-size: 1.08rem;
  text-align: left;
}
.pricing-table thead th {
  background: #131722;
  color: #fff;
}
.pricing-table tbody tr:nth-child(even) td {
  background: #f7f7fa;
}
.pricing-table tbody tr:nth-child(odd) td {
  background: #fff;
}
.pricing-table td {
  color: #2b2f4a;
  font-weight: 700;
}

/********* ACCORDION FAQS ***********/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion h3 {
  font-size: 1.11rem;
  cursor: pointer;
  background: #131722;
  color: #fff;
  border-radius: 0.6em;
  padding: 15px 20px;
  margin-bottom: 0;
  font-weight: 900;
  transition: background 0.18s, color 0.12s;
}
.faq-accordion h3:hover {
  background: #D4AF37;
  color: #131722;
}
.faq-accordion p {
  background: #f5f5f7;
  margin-top: 0;
  padding: 18px 22px 16px 22px;
  border-radius: 6px;
  font-size: 1rem;
}

/* QUICK LINKS */
.quick-links {
  margin-top: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.quick-links a {
  color: #D4AF37;
  margin: 0 4px;
  text-decoration: underline;
  transition: color 0.17s;
}
.quick-links a:hover { color: #131722; text-decoration: none; }

/********* TEXT SECTION **********/
.text-section {
  margin-bottom: 16px;
  font-size: 1.08rem;
  color: #23293e;
}
.text-section h2 { margin-top: 32px; color: #131722; }
.text-section ul, .text-section ol { padding-left: 18px; margin-bottom: 6px; }
.text-section ul li::before, .text-section ol li::before {
  content: '\2022';
  color: #D4AF37;
  font-weight: bold;
  display: inline-block;
  width: 1.1em;
  margin-left: -1.1em;
}

/* FOOTER */
footer {
  background: #131722;
  color: #fff;
  padding: 50px 0 28px 0;
  margin-top: 80px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -6px 32px -8px rgba(20,30,60,0.10);
}
footer .container {
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand img { height: 48px; width: auto; }
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.footer-nav a {
  color: #D4AF37;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  padding: 2px 0;
  position: relative;
  transition: color 0.12s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
  color: #f5f5f7;
  margin-top: 8px;
}
.footer-contact img { vertical-align: middle; height: 1.3em; margin-right: 4px; }

@media (min-width: 820px) {
  footer .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* RESPONSIVE/ADAPTIVE DESIGN */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 30px 0 34px 0; border-radius: 0 0 20px 20px; }
  .section { border-radius: 10px; margin-bottom: 35px; }
  .footer-brand img { height: 34px; }
}
@media (max-width: 768px) {
  .feature-grid, .content-grid, .destination-grid, .advantage-grid, .executive-bios {
    flex-direction: column;
    gap: 18px;
  }
  .modifiers-grid { flex-direction: column; gap: 16px; }
  .hero .container { padding: 0 4vw; }
  .text-image-section { flex-direction: column; gap: 16px; }
  header .container { flex-direction: row; padding: 0 8px; }
  .footer-nav { flex-direction: column; gap: 8px; }
  .footer-brand img { height: 32px; }
}
@media (max-width: 575px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.07rem; }
  .section { padding: 16px 4vw; margin-bottom: 26px; }
  .btn-primary { font-size: 0.97rem; padding: 10px 18px; }
}

/* SPECIAL ELEMENTS */
.next-steps ul, .contact-links {
  margin-top: 14px;
  list-style: none;
}
.next-steps li::before {
  content: '\2714\0020';
  color: #D4AF37;
  font-weight: 700;
  display: inline-block;
  width: 1em;
}
.contact-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.contact-links a, .contact-links span {
  font-size: 1.05rem;
  color: #131722;
}
.contact-links a.btn-primary { margin-left: 0; }
.next-steps ul {
  padding-left: 18px;
  margin-top: 6px;
}

/* CARD STYLES */
.card {
  border: 2.5px solid #D4AF37;
  background: #fff;
  color: #1b1c20;
}
.card .btn-primary {
  align-self: flex-start;
  margin-top: 10px;
}

/* Misc */
::-webkit-input-placeholder { color: #767c94; }
::-moz-placeholder { color: #767c94; }
:-ms-input-placeholder { color: #767c94; }
::placeholder { color: #767c94; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, .section, .card, .testimonial-card, .feature-grid > div, .advantage-grid > div, .executive-bios > div {
  animation: fadeInUp 0.72s cubic-bezier(0.45,0.04,0.46,1.24) both;
}

/****************** COOKIE CONSENT ****************/ 
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #131722;
  color: #fff;
  box-shadow: 0 -6px 32px -6px rgba(20,30,60,0.12);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.26s, transform 0.32s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.cookie-consent-message {
  font-size: 1.08rem;
  max-width: 680px;
  flex: 1 1 400px;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  cursor: pointer;
  border-radius: 28px;
  padding: 10px 24px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: background 0.17s, color 0.16s, transform 0.1s;
  margin-left: 0;
  margin-right: 0;
}
.cookie-btn.accept {
  background: #D4AF37;
  color: #131722;
}
.cookie-btn.accept:hover { background: #fff; color: #D4AF37; }
.cookie-btn.reject {
  background: #23293e;
  color: #fff;
  border: 2px solid #D4AF37;
}
.cookie-btn.reject:hover {
  background: #131722;
  color: #D4AF37;
}
.cookie-btn.settings {
  background: none;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}
.cookie-btn.settings:hover {
  background: #D4AF37;
  color: #131722;
}

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 20px 4vw 16px 4vw;
    font-size: 0.98rem;
  }
  .cookie-consent-actions {
    flex-direction: column;
    gap: 11px;
  }
}

/**************** MODAL: COOKIE SETTINGS **************/
.cookie-modal-overlay {
  position: fixed;
  z-index: 3050;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(19,23,34,0.92);
  display: none;
  align-items: center; justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #131722;
  padding: 40px 30px 30px 30px;
  border-radius: 18px;
  min-width: 320px; max-width: 440px;
  box-shadow: 0 8px 64px 0 rgba(19,23,34,0.16);
  position: relative;
  animation: fadeInUp 0.32s;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.6rem;
  color: #D4AF37;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .modal-close-btn:hover { color: #131722; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-modal .category-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.03rem;
  margin-bottom: 2px;
}
.cookie-modal .category-toggle {
  appearance: none;
  border: 2px solid #D4AF37;
  background: #fff;
  border-radius: 20px;
  width: 34px; height: 18px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.17s, border 0.17s;
}
.cookie-modal .category-toggle:checked {
  background: #D4AF37;
}
.cookie-modal .category-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #D4AF37;
  transition: transform 0.16s, background 0.16s;
  transform: translateX(0);
}
.cookie-modal .category-toggle:checked:before {
  background: #fff;
  transform: translateX(14px);
}
.cookie-modal .category-desc {
  font-size: 0.99rem;
  color: #75757a;
  margin-left: 10px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-end;
}

/***************** FORMS (Optional – for future) ****************/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #c3bdb0;
  outline: none;
  padding: 10px 12px;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.18s;
  background: #f7f7fa;
  color: #131722;
}
input:focus, textarea:focus, select:focus {
  border-color: #D4AF37;
}
label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #23293e;
}

/***************** UTILITY CLASSES ****************/
.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-20 { gap: 20px !important; }
.rounded { border-radius: 14px !important; }

/*********** Z-INDEX ASSURANCE **********/
header { z-index: 1050; }
.mobile-menu { z-index: 1200; }
.mobile-menu-close { z-index: 1210; }
.cookie-consent-banner { z-index: 2000; }
.cookie-modal-overlay { z-index: 3050; }

/*********** OVERRIDES FOR BRAND ACCURACY **********/
::-webkit-scrollbar { width: 7px; background: #e5e5ee; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 9px; }

/*********** Extras – Accessibility **********/
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* --- END --- */
