/* CSS RESET & BASE styles */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #fff;
  color: #191919;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.4em;
  margin-bottom: 16px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #191919;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 600;
}
p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

/* LAYOUT SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(20,20,20,0.06);
  position: sticky;
  top: 0; left: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  height: 50px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  padding-top: 2rem;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #121212;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #15487b;
  background: #f3f3f3;
}
.main-nav .btn-primary {
  background: #191919;
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  margin-left: 16px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(30,30,30,.07);
  transition: background .2s, color .2s, box-shadow .2s;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #15487b;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(21,72,123,0.16);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2rem;
  color: #121212;
  cursor: pointer;
  border: none;
  margin-left: 24px;
  z-index: 70;
  transition: color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #15487b;
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.95);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.44,0,.56,1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.5rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: color .18s;
  z-index: 1100;
  padding: 0;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #e5b900;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 32px 0 32px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  padding: 14px 10px;
  border-radius: 8px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #191919;
  color: #e5b900;
}

/* HERO & CTAs */
section:first-of-type {
  background: #f9f9fa;
  border-bottom: 1px solid #ededed;
  margin-bottom: 60px;
}
.content-wrapper > h1, .content-wrapper > h2 {
  text-align: center;
  margin-top: 0;
}
.content-wrapper > p {
  text-align: center;
  color: #575757;
}
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 12px 32px;
  border-radius: 26px;
  border: none;
  display: inline-block;
  margin-top: 16px;
  transition: background .18s, color .18s, box-shadow .18s, transform .12s;
  cursor: pointer;
}
.btn-primary {
  background: #191919;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(21,72,123,0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: #15487b;
  color: #e5b900;
  box-shadow: 0 6px 30px 0 rgba(21,72,123,0.19);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: #fff;
  color: #191919;
  border: 2px solid #191919;
  margin-top: 18px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #191919;
  color: #fff;
}

/* FEATURES / CARDS / SECTIONS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature-item {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(30,30,30,0.06);
  padding: 32px 24px 24px 24px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 320px;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .16s, border-color .16s, transform .16s;
}
.feature-item:hover {
  box-shadow: 0 8px 36px 0 rgba(21,72,123,0.14);
  border-color: #d1d1d9;
  transform: translateY(-4px) scale(1.012);
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}
.feature-item h3 {
  color: #15487b;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.feature-item p {
  color: #292929;
  font-size: 1rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 10px;
}
.team-member {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  box-shadow: 0 3px 14px rgba(30,30,30,0.04);
  padding: 24px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow .16s;
}
.team-member h3 {
  color: #15487b;
  margin-bottom: 4px;
}
.team-member p {
  color: #3d3d3d;
  font-size: 1rem;
}

.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
}
.tour-item {
  background: #fcfcfc;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(21,72,123,0.05);
  padding: 28px 22px 20px 22px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .13s, border-color .13s;
}
.tour-item h3 {
  color: #15487b;
}
.tour-item ul {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.98rem;
  color: #232323;
  padding-left: 18px;
}
.tour-item:hover {
  border-color: #15487b44;
  box-shadow: 0 8px 22px 0 rgba(21,72,123,0.09);
}

.tours-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
  padding-left: 15px;
  width: 100%;
}
.tours-list li {
  font-size: 1.07rem;
  color: #242425;
  margin-bottom: 4px;
}

.tour-process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 18px;
}
.tour-process-steps > div {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(40,40,40,0.04);
  padding: 26px 18px 22px 18px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.tour-process-steps img {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}
.tour-process-steps h3 {
  color: #15487b;
  font-size: 1.07rem;
}

/* CARDS & TESTIMONIALS */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 26px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  color: #181a1c;
  max-width: 400px;
  min-width: 260px;
  gap: 20px;
  padding: 26px 24px 20px 24px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  transition: border-color .18s, box-shadow .18s;
}
.testimonial-card:hover {
  border-color: #15487b44;
  box-shadow: 0 8px 32px 0 rgba(21,72,123,0.13);
}
.testimonial-card p {
  color: #121212;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #4a4a4a;
  font-style: italic;
  text-align: right;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 16px;
}
.faq-item {
  background: #fbfbfd;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 20px 18px 14px 18px;
  box-shadow: 0 2px 8px 0 rgba(21,72,123,0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item h3 {
  color: #15487b;
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.faq-item p {
  color: #181818;
  font-size: 1rem;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.03rem;
  margin-top: 16px;
  margin-bottom: 28px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(30,30,30,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #efefef;
  text-align: left;
}
.pricing-table th {
  background: #ededed;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  color: #191919;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:nth-child(2n) td {
  background: #fafbfc;
}

.policy-date {
  color: #848484;
  font-size: 0.98rem;
  text-align: right;
  margin-top: 30px;
}

/* CONTACT INFO */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: #1e1e1e;
}
.contact-info-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info-list img {
  width: 22px;
  height: 22px;
  filter: grayscale(100%) contrast(1);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.text-section h3 {
  color: #15487b;
  margin-top: 10px;
  font-size: 1.1rem;
}
.text-section ul {
  margin-top: 7px;
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.next-steps {
  background: #fafbfc;
  border: 1px solid #ededed;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(21,72,123,0.04);
  margin: 26px 0;
  padding: 20px 18px;
  text-align: left;
}
.next-steps h2 {
  font-size: 1.35rem;
  color: #15487b;
  margin-bottom: 10px;
}
.next-steps ul {
  padding-left: 16px;
  margin-bottom: 0;
  font-size: 1.03rem;
  color: #232323;
}

/* FOOTER */
footer {
  background: #161618;
  color: #f0f0f2;
  padding-top: 32px;
  padding-bottom: 0;
  box-shadow: 0 -4px 24px 0 rgba(21,72,123,0.17);
  margin-top: 44px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #232329;
  padding-bottom: 12px;
  margin-bottom: 22px;
  justify-content: flex-start;
}
.footer-top img {
  width: 92px; height: auto;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #15487b;
  padding: 4px 7px;
  border-radius: 4px;
  transition: color .15s, background .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #e5b900;
  background: #2c2c31;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 17px;
  gap: 40px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.97rem;
}
.footer-links a {
  
  text-decoration: underline dotted #949494 1px;
  transition: color .13s, text-decoration .13s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #e5b900;
  text-decoration: underline solid #e5b900 1px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #15487b;
}
.footer-contact img {
  width: 16px; height: 16px; filter: grayscale(1) brightness(2.8);
}
.footer-copy {
  background: #101014;
  color: #a6a6ac;
  text-align: center;
  font-size: 0.97rem;
  padding: 12px;
  border-top: 1px solid #24242b;
  margin-top: 22px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232329;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -6px 30px 0 rgba(20,20,20,0.18);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 18px 20px 18px;
  animation: upIn .4s;
  font-size: 1rem;
}
@keyframes upIn {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .14s;
}
.cookie-btn-accept {
  background: #15487b;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #191919;
  color: #e5b900;
}
.cookie-btn-reject {
  background: #fff;
  color: #191919;
  border: 1px solid #191919;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #232329;
  color: #e5b900;
}
.cookie-btn-settings {
  background: #e5b900;
  color: #191919;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #191919;
  color: #e5b900;
}

/* COOKIE PREFERENCES MODAL */
.cookie-preferences-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,32,0.88);
  z-index: 4010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 8px 42px rgba(21,72,123,0.18);
  padding: 34px 24px 26px 24px;
  max-width: 380px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: modalPop .17s;
}
@keyframes modalPop {
  from { transform: scale(.96) translateY(18px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  color: #15487b;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9fa;
  border-radius: 8px;
  padding: 12px;
}
.cookie-category-title {
  font-weight: 600;
  font-size: 1.07rem;
}
.cookie-category-desc {
  font-size: 0.99rem;
  color: #424242;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #ececec;
  border-radius: 14px;
  outline: none;
  position: relative;
  transition: background .13s;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #15487b;
}
.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left .17s;
}
.cookie-toggle input[type="checkbox"]:checked::before {
  left: 19px;
  background: #191919;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 13px;
  font-size: 2rem;
  color: #15487b;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #e5b900;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
a, button, .btn-primary, .btn-secondary, .feature-item, .tour-item, .testimonial-card, .team-member, .faq-item, .pricing-table tr {
  transition: box-shadow .15s, background .13s, color .13s, border-color .13s,transform .13s;
}
.section,section,.container,.content-wrapper {
  transition: padding .16s, margin .16s;
}

/* BREAKPOINTS & RESPONSIVENESS */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; }
  .footer-top, .footer-bottom { gap: 16px; }
}
@media (max-width: 800px) {
  .features-grid, .team-grid, .tours-grid, .card-container, .testimonials-slider, .tour-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .container, .content-wrapper { padding: 0 5vw; }
  header .container { flex-direction: row; justify-content: space-between; }
}
@media (max-width: 768px) {
  .content-wrapper { padding: 0 10px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .text-image-section, .content-grid, .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.32rem; }
  .feature-item, .team-member, .tour-item, .testimonial-card {
    padding: 18px 10px 16px 10px;
  }
  .next-steps {
    padding: 13px 5px;
    font-size: .97rem;
  }
  .cookie-modal-content { padding: 17px 7px 14px 9px; }
}

/* MONOCHROME SOPHISTICATED EFFECTS */
body, section, .container, .content-wrapper {
  background: #fff;
}
section {
  border-radius: 18px;
  border: 0;
}
.card, .feature-item, .team-member, .tour-item, .testimonial-card, .faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 28px 0 rgba(0,0,0,0.06);
}
.card {
  padding: 22px 16px;
}
.card:hover {
  box-shadow: 0 12px 42px 0 rgba(0, 0, 0, 0.19);
}

/* LINK STYLES */
a {
  color: #15487b;
  transition: color .13s;
}
a:hover, a:focus {
  color: #e5b900;
}
.cookie-settings-link {
  color: #e5b900;
  text-decoration: underline;
  cursor: pointer;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #e5b900;
  outline-offset: 1px;
}

/* OVERRIDES/UTILITY */
.hidden { display: none !important; }
