:root {
  --navy: #0b1f33;
  --gold: #c89b3c;
  --sand: #f5f3ee;
  --white: #ffffff;
  --text-dark: #202020;
}



* {
  box-sizing: border-box;
}

/* All images scale down to fit their containers */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--text-dark);
}

/* Snowflakes – global */
.snowflake {
  position: fixed;
  top: -10px;
  color: #ffffff;
  font-size: 1rem;
  pointer-events: none;      /* So you can still click everything */
  user-select: none;
  z-index: 999;              /* Under your fixed header (which is 1000) */
  opacity: 0.9;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes snow-fall {
  0% {
    transform: translate3d(0, -10vh, 0);
    opacity: 0.9;
  }
  25% {
    transform: translate3d(var(--drift, 30px), 25vh, 0);
    opacity: 1;
  }
  50% {
    transform: translate3d(calc(var(--drift, 30px) * -1), 50vh, 0);
    opacity: 1;
  }
  75% {
    transform: translate3d(var(--drift, 30px), 75vh, 0);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(calc(var(--drift, 30px) * -1), 110vh, 0);
    opacity: 0;
  }
}



/* Respect users who disable animations */
@media (prefers-reduced-motion: reduce) {
  .snowflake {
    animation: none !important;
    display: none !important;
  }
}


/* HEADER */
.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: fixed;        /* CHANGED: was relative → now fixed */
  top: 0;                 /* NEW: stick to top of the viewport */
  left: 0;                /* NEW */
  right: 0;               /* NEW */
  z-index: 1000;          /* keep this so it stays above content */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  /*justify-content: space-between;content replaced*/
    justify-content: flex-start;   /* was space-between */
  gap: 20px;                     /* small space between items */
}

.logo a {  
  color: var(--gold);  
 text-decoration: none;
 font-weight: 600;  
  font-size: 1.3rem; 
} 


/* BEllow button*/

.hero-trust-line {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-service-line {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55); /* softer */
}

/* NAV */

.main-nav {
    margin-left: auto;        /* pushes the menu to the right side */
    display: flex;
    align-items: center;        /*MAIN-NAV ADDED*/
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 0;            /* NEW: more touch-friendly */
}

.main-nav a:hover {
  color: var(--gold);
}

/* LANGUAGE SWITCHER */
.language-switcher a {
  color: var(--white);
  font-size: 0.8rem;
  margin-left: 8px;
  text-decoration: none;
}

.language-switcher a.active {
  color: var(--gold);
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 12px;           /* small space from language switcher */
  padding: 4px 0;              /* aligns vertically with text */
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

/* HERO */

/*Soft glide*/

.hero-title-glide {
  opacity: 0;
  transform: translateY(35px);
  animation: heroGlideUp 1.2s ease-out forwards;
}

.hero-subtitle-glide {
  opacity: 0;
  transform: translateY(28px);
  animation: heroGlideUp 1.2s ease-out forwards;
  animation-delay: 0.25s;
}

.hero-buttons-glide {
  opacity: 0;
  transform: translateY(22px);
  animation: heroGlideUp 1.2s ease-out forwards;
  animation-delay: 0.45s;
}

@keyframes heroGlideUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Soft Glide end */
.hero {
    background-image: url('/images/hero.webp');
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(11,31,51,0.4) 50%,
    rgba(11,31,51,0.85) 80%,
    var(--navy) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
  padding: 0 20px;
  text-align: left;
}

.hero-subtitle {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

/* NEW HERO SUBTITLE */

.hero-brand-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: #d4a94a;
  letter-spacing: 0.01em;
}

.hero-brand-subline {
  margin-top: 10px;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}

.hero-typed-line {
  margin-top: 24px;
  min-height: 2.4em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

#hero-typed-text {
  display: inline-block;
  white-space: normal;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

#hero-typed-text.is-changing {
  opacity: 0;
  transform: translateY(8px);
}



.hero-supporting-line {
  margin: 22px auto 0;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
}

/* END NEW HERO SUBTITLE */

/* BUTTONS */
.btn, button {
  font-family: inherit;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-gold-full {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
}

/*MUSIC BUTTON */

.music-btn{
position:fixed;
bottom:90px;
left:20px;
z-index:999;
background:#caa24d;
border:none;
color:white;
font-size:18px;
padding:10px 14px;
border-radius:50%;
cursor:pointer;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

/* HERO CALCULATOR */
.calculator-box {
  margin: 25px auto 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(11,31,51,0.85);
  max-width: 520px;
  text-align: left;
}

.calc-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.calc-row label {
  font-size: 0.8rem;
  margin-bottom: 3px;
}

.calc-row input,
.calc-row select {
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
}

/* RESULT CARD */
.result-card {
  margin-top: 15px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.result-distance {
  margin-bottom: 8px;
}

/* GENERIC SECTIONS */
.section-light {
  background: var(--sand);
  padding: 40px 20px;
}

.page-hero {
  padding: 40px 20px 20px;
  text-align: center;
  background: var(--sand);
}

.page-hero h1 {
  margin-bottom: 10px;
}

.container-two {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.container-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.lead {
  font-size: 1rem;
  margin-bottom: 15px;
}

.bullet-list {
  padding-left: 20px;
}

/* ===========================
   PARTNERS PAGE
=========================== */

.partners-hero {
  padding-top: 60px;
  padding-bottom: 45px;
}

.partners-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
}

.partners-introduction {
  align-items: start;
}

.partners-list {
  margin-top: 24px;
}

.partners-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.partner-principles-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.partner-principles-card h2 {
  margin-top: 0;
}

.partner-principles-card p {
  line-height: 1.7;
}

.partner-application-section {
  background: var(--white);
  padding: 70px 20px;
}

.partner-application-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  background: var(--sand);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.partner-application-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.partner-application-card > p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.partner-form-button {
  display: inline-block;
  margin-top: 18px;
}

.partner-form-note {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 0.88rem;
  opacity: 0.78;
}

/* CARDS GRID */
.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  display: block;
}

.card-body {
  padding: 15px;
}

.price {
  font-weight: 600;
}

.duration {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* TOUR LAYOUT */
.tour-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

.tour-main-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* TOUR DESCRIPTION (NEW) */
.tour-description {
  line-height: 1.7;          /* NEW: more comfortable reading */
  font-size: 1.02rem;        /* NEW: slightly bigger than base text */
  margin-top: 15px;          /* NEW: space above the text block */
  color: var(--text-dark);   /* NEW: ensures good contrast */
}

.tour-description p {
  margin-bottom: 16px;       /* NEW: spacing between paragraphs */
}

.tour-description ul {
  margin: 8px 0 18px 22px;   /* NEW: nice spacing & indent for bullets */
  padding-left: 0;           /* NEW: avoid double indentation */
}

.tour-description li {
  margin-bottom: 6px;        /* NEW: space between bullet items */
}

.tour-description strong {
  font-size: 1.05rem;        /* NEW: make section titles stand out */
}
/* Make section titles inside description behave like headings */
.tour-description p strong {
  display: block;             /* NEW: put section title on its own line */
  margin-bottom: 6px;         /* NEW: small space under title */
  font-size: 1.12rem;         /* NEW: slightly larger than normal text */
  color: var(--navy);         /* NEW: use your main navy color */
}

/* TOUR DESCRIPTION BOX (NEW) */
/* TOUR DESCRIPTION BOX (UPDATED – STRONGER CARD STYLE) */
.tour-description-box {
  background: #ffffff;                             /* CHANGE: pure white */
  padding: 28px;                                   /* CHANGE: a bit more padding */
  border-radius: 16px;                             /* CHANGE: slightly rounder */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);     /* CHANGE: stronger shadow */
  border: 1px solid rgba(0, 0, 0, 0.08);           /* CHANGE: more visible border */
  margin-top: 24px;                                /* CHANGE: a bit more separation from the image */
}



/* FORMS */
.booking-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

/* FOOTER */

/* NEW: legal information styling */
.footer-legal {
  margin-top: 10px;
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-watermark {
  margin-top: 15px;
  max-width: 180px;
  opacity: 0.08;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 55px;
    right: 0;
    left: auto;
    width: 180px; 
    background: var(--navy);
    display: none;
    text-align: center;
    padding: 15px 18px;
    z-index: 2000;        /* ADD THIS LINE */
    box-shadow: -4px 0 12px rgba(0,0,0,0.25);  /* NEW: nice drawer shadow */
    border-bottom-left-radius: 12px;           /* NEW: rounded corner */
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
  
/* SHOW language selector on mobile */
  .language-switcher {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-right: 10px;
    font-size: 0.9rem;
  }

  .language-switcher a {
    padding: 0.2rem 0.4rem;
  }

 .hero {
  height: auto;
  padding: 90px 0 40px;
}

  .container-two,
  .tour-layout {
    grid-template-columns: 1fr;
  }
    .tour-aside {
    margin-top: 20px;        /* NEW: space between description and sidebar on mobile */
  }
  .tour-description-box {
    padding: 18px;    /* slightly smaller padding for mobile */
  }
    .partners-hero {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .partner-principles-card {
    padding: 24px;
  }

  .partner-application-section {
    padding: 45px 16px;
  }

  .partner-application-card {
    padding: 28px 20px;
  }

  .partner-form-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

}



/* ===========================
   HOME SECTIONS atualizado a 4 /12 2025
=========================== */

.home-section {
  padding: 60px 0;
}

.home-section:nth-of-type(odd) {
  background: var(--sand);
}

.home-section:nth-of-type(even) {
  background: var(--white);
}

.home-section .container,
.home-section .container-two {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.home-section-header {
  text-align: left;
  margin-bottom: 20px;
}

.home-section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.home-section-sub {
  font-size: 0.95rem;
  color: #666;
  max-width: 600px;
}

/* TRUST LIST */
.home-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-feature-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.home-feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

/* SERVICES GRID */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-card {
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.04);
}

.home-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.home-card p {
  margin-bottom: 16px;
  font-size: 0.96rem;
}

/* CTA SECTION */
.home-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 20px;
  align-items: center;
}

.home-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.home-cta-whatsapp {
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .home-services-grid,
  .home-cta-grid {
    grid-template-columns: 1fr;
    /* ADDED FOR MEDIA TYPEWRITER */
    
      .hero-brand-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-brand-subline {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
  }

  .hero-typed-line {
    min-height: 2.6em;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  #hero-typed-text {
    white-space: normal;
  }

  .hero-supporting-line {
    font-size: 0.95rem;
    max-width: 100%;
  }
  

    
    /* END ADDED FOR MEDIA TYPEWRITER */
    
  }

  .home-section {
    padding: 40px 0;
  }
}
/* ===========================
   WhatsApp Floating Button
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;
    /*background-color: #25d366;*/
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
  /*  align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s ease; */
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
}


.whatsapp-float:hover {
    transform: scale(1.08);
}


/* HERO SPLIT LAYOUT */
.hero-content-split {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 430px);
  gap: 48px;
  align-items: center;
}

.hero-left {
  max-width: 520px;
  align-self: end;
  margin-bottom: 40px;
}

.hero-booking-card {
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 32px 28px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,0.22);
}

.booking-pane {
  display: none;
}

.booking-pane.active {
  display: block;
}

.hero-booking-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--navy);
}

.hero-booking-card p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.5;
  color: #6b7280;
}

.hero-booking-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-booking-tab {
  flex: 1;
  padding: 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(11,31,51,0.10);
  background: rgba(255,255,255,0.42);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.hero-booking-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.hero-booking-card label {
  display: block;
  margin: 8px 0 4px;
  font-weight: 700;
  color: var(--navy);
}

.hero-booking-card input,
.hero-booking-card select,
.hero-booking-card textarea {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid rgba(11,31,51,0.10);
  border-radius: 18px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  min-height: 56px;
  line-height: normal;
  background: rgba(255,255,255,0.72);
}

.hero-booking-card input[type="date"],
.hero-booking-card input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
  height: 56px;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-booking-card textarea {
  min-height: 110px;
  height: auto;
}

.hero-booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-booking-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.hero-booking-actions.single-action {
  grid-template-columns: 1fr;
}

.hero-booking-actions.double-action {
  grid-template-columns: 1fr 1fr;
}


.hero-booking-whatsapp {
  background: var(--gold);
  color: var(--white);
  text-align: center;
}

.hero-booking-email {
  background: #fff;
  color: var(--navy);
  border: 1px solid #d7dce2;
  text-align: center;
}

.hero-ride-summary {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(11,31,51,0.10);
}

.hero-ride-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hero-ride-summary-row + .hero-ride-summary-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(11,31,51,0.08);
}

.hero-ride-summary span {
  color: #4b5563;
  font-size: 0.96rem;
}

.hero-ride-summary strong {
  color: var(--navy);
  font-size: 1rem;
}

.hero-ride-summary-note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #6b7280;
}


.hero-chauffeur-summary {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(11,31,51,0.10);
}

.hero-calc-btn {
  width: 100%;
  margin-top: 4px;
}

/* optional: make hero a bit taller for this layout */
.hero {
  min-height: 100vh;
  height: auto;
  padding: 120px 0 70px;
}

/* mobile */
@media (max-width: 980px) {
  .hero-content-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-booking-card {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-booking-row,
  .hero-booking-actions {
    grid-template-columns: 1fr;
  }

  .hero-booking-card {
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .hero-booking-card h2 {
    font-size: 1.8rem;
  }

  .hero-booking-card input,
  .hero-booking-card select,
  .hero-booking-card textarea {
    font-size: 16px;
    min-height: 54px;
  }

  .hero-booking-card input[type="date"],
  .hero-booking-card input[type="time"] {
    height: 44px;
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-booking-card textarea {
    min-height: 110px;
    height: auto;
  }
}


/* NEW UPDATE 5 */

.booking-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.hero-booking-card.booking-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 980px) {
  .hero {
    background-image: url('/images/hero-mobile.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 100vh;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
  }
}

@media (max-width: 980px) {
  .hero-left {
    align-self: start;
    margin-bottom: 0;
  }
}

/* =========================================================
   PRIVACY, COOKIES AND DATA NOTICES
========================================================= */

/* Footer legal links */

.footer-privacy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
}

.footer-privacy-links a,
.footer-link-button {
    color: inherit;
    font: inherit;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.88;
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.footer-privacy-links a:hover,
.footer-link-button:hover,
.footer-privacy-links a:focus,
.footer-link-button:focus {
    opacity: 1;
}

/* Contact-form privacy acknowledgement */

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 8px;
    font-size: 0.95rem;
    line-height: 1.55;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.privacy-check a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-privacy-note {
    margin: 0 0 20px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #646464;
}

/* Partner application notice */

.partner-privacy-notice {
    margin: 24px 0;
    padding: 20px 22px;
    border-left: 4px solid #d6a436;
    border-radius: 8px;
    background: rgba(214, 164, 54, 0.09);
    text-align: left;
}

.partner-privacy-notice strong {
    display: block;
    margin-bottom: 7px;
    color: #0b2438;
}

.partner-privacy-notice p {
    margin: 0;
    line-height: 1.65;
}

.partner-privacy-notice a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Cookie banner */

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 10000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.cookie-banner.cookie-banner-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-inner {
    width: min(100%, 1050px);
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #0b2438;
    color: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

.cookie-banner-text {
    max-width: 700px;
}

.cookie-banner-text h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 1.2rem;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #f0c56a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-actions .btn {
    white-space: nowrap;
}

.cookie-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: transparent;
    color: #ffffff;
}

.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
}

/* Privacy policy page */

.privacy-content {
    max-width: 920px;
}

.privacy-updated {
    margin-bottom: 35px;
    padding: 14px 18px;
    border-left: 4px solid #d6a436;
    background: rgba(214, 164, 54, 0.08);
}

.privacy-section {
    margin-bottom: 44px;
}

.privacy-section h2 {
    margin-bottom: 16px;
    color: #0b2438;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.privacy-section h3 {
    margin: 24px 0 9px;
    color: #0b2438;
    font-size: 1.15rem;
}

.privacy-section p,
.privacy-section li {
    line-height: 1.75;
}

.privacy-address {
    padding: 18px 20px;
    border-radius: 8px;
    background: #f5f5f5;
    font-style: normal;
    line-height: 1.7;
}

.privacy-list {
    margin: 18px 0 0;
    padding-left: 22px;
}

.privacy-list li {
    margin-bottom: 9px;
}

.privacy-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.privacy-table {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
}

.privacy-table th,
.privacy-table td {
    padding: 16px;
    border: 1px solid #dedede;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.privacy-table th {
    background: #0b2438;
    color: #ffffff;
}

.privacy-table tbody tr:nth-child(even) {
    background: #f7f7f7;
}

/* Mobile */

@media (max-width: 760px) {
    .cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-banner-inner {
        padding: 20px;
        display: block;
    }

    .cookie-banner-actions {
        margin-top: 18px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }

    .footer-privacy-links {
        flex-direction: column;
        gap: 9px;
    }
}