@charset "UTF-8";
/*!
Theme Name: GTS
Theme URI: http://underscores.me/
Author: AntonGotry
Author URI: https://t.me/notarikon
Description: GTS Theme - Custom WordPress theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gts-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

GTS is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/**
 * SCSS Functions
 * Utility functions for responsive design
 */
/**
 * Breakpoints
 * Desktop-first responsive breakpoints and mixins
 *
 * Логика:
 * 1920px = базовые стили (без медиа-запроса)
 * 1440px = @include xl { } — большой десктоп
 * 1024px = @include lg { } — планшет ландшафт
 * 768px  = @include md { } — мобильные устройства
 */
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Fonts
--------------------------------------------- */
/**
 * Visby CF Font Face Declarations
 */
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-ThinOblique.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-LightOblique.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-RegularOblique.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-MediumOblique.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-DemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-DemiBoldOblique.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-BoldOblique.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-ExtraBoldOblique.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../assets/fonts/VisbyCF-HeavyOblique.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #fff;
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
html {
  --scrollbar-width: calc(100vw - 100%);
  --site-header-height: 72px;
}

html,
body {
  background: #0C0F17;
  color: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Buttons
--------------------------------------------- */
/**
 * Button Components
 * Unified button system for all buttons across the theme
 */
.btn, .final-cta-button, .custom-itinerary-button, .booking-submit-btn, .footer-button, .footer-button-secondary, .footer-button-primary {
  padding: 0 24px;
  height: 56px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #000000;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.btn-primary, .final-cta-button, .booking-submit-btn, .footer-button-primary {
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%);
  color: #000000;
  overflow: hidden;
  position: relative;
}
.btn-primary::after, .final-cta-button::after, .booking-submit-btn::after, .footer-button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #FEE5C0 0%, #F5CE9B 50%, #F8D5A5 100%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover, .final-cta-button:hover, .booking-submit-btn:hover, .footer-button-primary:hover {
  color: #000000;
}
.btn-primary:hover::after, .final-cta-button:hover::after, .booking-submit-btn:hover::after, .footer-button-primary:hover::after {
  opacity: 1;
}
.btn-primary:active, .final-cta-button:active, .booking-submit-btn:active, .footer-button-primary:active {
  background: linear-gradient(to right, #FCD9A4 0%, #F3C17B 50%, #F6C88B 100%);
  color: #000000;
}
.btn-primary:active::after, .final-cta-button:active::after, .booking-submit-btn:active::after, .footer-button-primary:active::after {
  opacity: 0;
}
.btn-primary.btn-shine::before, .btn-shine.final-cta-button::before, .booking-submit-btn::before, .btn-shine.footer-button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 2;
}
.btn-primary.btn-shine:hover, .btn-shine.final-cta-button:hover, .booking-submit-btn:hover, .btn-shine.footer-button-primary:hover {
  background: linear-gradient(to right, #FEE5C0 0%, #F5CE9B 50%, #F8D5A5 100%);
}
.btn-primary.btn-shine:hover::before, .btn-shine.final-cta-button:hover::before, .booking-submit-btn:hover::before, .btn-shine.footer-button-primary:hover::before {
  left: 100%;
}
.btn-primary.btn-shine:active, .btn-shine.final-cta-button:active, .booking-submit-btn:active, .btn-shine.footer-button-primary:active {
  background: linear-gradient(to right, #FCD9A4 0%, #F3C17B 50%, #F6C88B 100%);
}

.btn-secondary, .custom-itinerary-button, .footer-button-secondary {
  background: #fff;
  color: #000;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.btn-secondary:hover, .custom-itinerary-button:hover, .footer-button-secondary:hover {
  background: #e8e8e8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.btn-secondary:active, .custom-itinerary-button:active, .footer-button-secondary:active {
  background: #dcdcdc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-group, .hero-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-sm {
  height: 48px;
  padding: 0 20px;
  font-size: 13px;
}
@media (max-width: 1024px) {
  .btn-sm {
    padding: 14px 20px;
    font-size: 13px;
  }
}

.btn-full {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-width-auto {
  width: auto;
}

.btn-no-margin {
  margin: 0;
}

.btn-no-shadow, .custom-itinerary-button {
  box-shadow: none;
}
.btn-no-shadow:hover, .custom-itinerary-button:hover, .btn-no-shadow:active, .custom-itinerary-button:active {
  box-shadow: none;
}

.footer-button, .footer-button-secondary, .footer-button-primary {
  padding: 16px 24px;
}
@media (max-width: 1024px) {
  .footer-button, .footer-button-secondary, .footer-button-primary {
    padding: 14px 20px;
    font-size: 13px;
  }
}

.footer-button-primary {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-button-primary {
    margin-bottom: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

.footer-button-secondary {
  display: none;
}
@media (max-width: 768px) {
  .footer-button-secondary {
    display: inline-flex;
    background: #ffffff;
    color: #000000;
    margin-bottom: 40px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

.booking-submit-btn {
  width: 153px;
}

.custom-itinerary-button {
  margin-top: auto;
  width: 238px;
}

.final-cta-button {
  margin: 0;
  width: auto;
}

/* Pills
--------------------------------------------- */
/**
 * Pill Components
 * Unified pill elements system
 */
.pill, .pill--narrow, .how-it-works-pill, .pill--wide, .services-pill, .pill--light, .faq-pill, .trusted-by-pill, .pill--glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 43px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-text, .faq-pill-text, .trusted-by-pill-text, .how-it-works-pill-text, .why-us-heading-text, .services-pill-text {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .pill-text, .faq-pill-text, .trusted-by-pill-text, .how-it-works-pill-text, .why-us-heading-text, .services-pill-text {
    font-size: 12px;
  }
}

.pill--glass, .how-it-works-pill {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.pill--light, .faq-pill, .trusted-by-pill, .services-pill {
  background: #f5f5f5;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.pill--wide, .services-pill {
  width: 270px;
}

.pill--narrow, .how-it-works-pill {
  width: 103px;
}

.services-pill-text {
  color: #0C0F17;
}

.why-us-heading-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 43px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding-left: 24px;
  padding-right: 24px;
  width: max-content;
  min-width: 103px;
  box-sizing: border-box;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-us-heading-text {
  white-space: nowrap;
  overflow: visible;
  text-align: center;
}

.trusted-by-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 232px;
  height: 43px;
  border-radius: 999px;
}

.trusted-by-pill-text {
  color: #0C0F17;
}

/* Typography
--------------------------------------------- */
/**
 * Typography Components
 * Unified typography system for headings and text
 */
.section-title, .how-it-works-title, .custom-itinerary-title, .final-cta-title, .services-title, .section-title--tight, .section-title--light, .section-title--center {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0;
}
@media (max-width: 1024px) {
  .section-title, .how-it-works-title, .custom-itinerary-title, .final-cta-title, .services-title, .section-title--tight, .section-title--light, .section-title--center {
    font-size: 33px;
  }
}
@media (max-width: 768px) {
  .section-title, .how-it-works-title, .custom-itinerary-title, .final-cta-title, .services-title, .section-title--tight, .section-title--light, .section-title--center {
    font-size: 28px;
  }
}

.hero-title {
  font-family: "Visby CF", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 54px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
    max-width: 460px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 27px;
  }
}

.section-title--center, .custom-itinerary-title, .services-title {
  text-align: center;
  width: 100%;
}

.section-title--light, .how-it-works-title, .final-cta-title {
  color: #ffffff;
}

.section-title--tight, .final-cta-title {
  line-height: 1.1;
}

.section-description, .final-cta-description, .custom-itinerary-description, .section-description--light {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .section-description, .final-cta-description, .custom-itinerary-description, .section-description--light {
    font-size: 14px;
  }
}

.section-description--light, .final-cta-description {
  color: #ffffff;
}

.services-title {
  margin: 32px 0 0 0;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .services-title {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
}

.final-cta-title {
  margin: 0 0 16px 0;
}
@media (max-width: 1024px) {
  .final-cta-title {
    font-size: 33px;
  }
}

.custom-itinerary-title {
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .custom-itinerary-title {
    font-size: 28px;
  }
}

.how-it-works-title {
  color: #fff;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .how-it-works-title {
    font-size: 33px;
  }
}

.custom-itinerary-description {
  text-align: center;
}
@media (max-width: 768px) {
  .custom-itinerary-description {
    font-size: 14px;
    max-width: 300px;
  }
}

.final-cta-description {
  margin: 0 0 24px 0;
}
@media (max-width: 1024px) {
  .final-cta-description {
    font-size: 14px;
  }
}

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Navigation Arrows
--------------------------------------------- */
/**
 * Navigation Arrows Component
 * Reusable arrow buttons for sliders and navigation
 */
.nav-arrows {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 64px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.nav-arrow-icon {
  width: 11px;
  height: auto;
  display: block;
}

.nav-arrow:hover {
  background: #ededed;
}

.nav-arrow:disabled,
.nav-arrow.swiper-button-disabled {
  background: #e2e2e2;
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
  visibility: visible !important;
  display: flex !important;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.site-main--default-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #0c0f17;
}
@media (max-width: 1024px) {
  .site-main--default-page {
    padding-top: 100px;
    padding-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .site-main--default-page {
    padding-top: 88px;
    padding-bottom: 48px;
  }
}

.site-main--default-page .page {
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .site-main--default-page .page {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .site-main--default-page .page {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.site-main--default-page .entry-header {
  margin: 0 0 24px;
}

.site-main--default-page .entry-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1024px) {
  .site-main--default-page .entry-title {
    font-size: 33px;
  }
}
@media (max-width: 768px) {
  .site-main--default-page .entry-title {
    font-size: 28px;
  }
}

.site-main--default-page .entry-content {
  margin: 0;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 768px) {
  .site-main--default-page .entry-content {
    font-size: 14px;
  }
}

.site-main--default-page .entry-content h2,
.site-main--default-page .entry-content h3,
.site-main--default-page .entry-content h4 {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 28px 0 12px;
}

.site-main--default-page .entry-content a {
  color: #f4c58b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Mobile Menu
--------------------------------------------- */
/**
 * Mobile Menu Drawer
 * Sliding doors effect - main goes down, submenu comes from top
 */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 23, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 380px;
  background: linear-gradient(180deg, #1A1D26 0%, #0C0F17 100%);
  border-radius: 24px 24px 0 0;
  z-index: 10001;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  display: none;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mobile-menu-drawer {
    display: block;
  }
}
@media (max-width: 768px) {
  .mobile-menu-drawer {
    height: 420px;
  }
}
.mobile-menu-drawer.is-active {
  transform: translateY(0);
}
.mobile-menu-drawer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(244, 197, 139, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.mobile-menu-handle {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 100;
  cursor: grab;
}
.mobile-menu-handle:hover {
  background: rgba(255, 255, 255, 0.4);
}

.mobile-menu-panel {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
@media (max-width: 768px) {
  .mobile-menu-panel {
    top: 24px;
    padding: 0 20px 20px;
  }
}

.mobile-menu-main {
  transform: translateY(0);
}
.mobile-menu-drawer.submenu-open .mobile-menu-main {
  transform: translateY(110%);
}

.mobile-menu-submenu {
  transform: translateY(-110%);
}
.mobile-menu-drawer.submenu-open .mobile-menu-submenu {
  transform: translateY(0);
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .mobile-menu-list {
    gap: 8px;
  }
}

.mobile-menu-item {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu-drawer.is-active .mobile-menu-item {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-item:nth-child(1) {
  transition-delay: 0.12s;
}
.mobile-menu-item:nth-child(2) {
  transition-delay: 0.16s;
}
.mobile-menu-item:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu-item:nth-child(4) {
  transition-delay: 0.24s;
}
.mobile-menu-item:nth-child(5) {
  transition-delay: 0.28s;
}
.mobile-menu-item:nth-child(6) {
  transition-delay: 0.32s;
}
.mobile-menu-item:nth-child(7) {
  transition-delay: 0.36s;
}
.mobile-menu-item:nth-child(8) {
  transition-delay: 0.4s;
}
.mobile-menu-item:nth-child(9) {
  transition-delay: 0.44s;
}
.mobile-menu-item:nth-child(10) {
  transition-delay: 0.48s;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 197, 139, 0.35);
  color: #fff;
}
.mobile-menu-link:active {
  transform: scale(0.97);
}
@media (max-width: 768px) {
  .mobile-menu-link {
    height: 44px;
    font-size: 13px;
    padding: 0 10px;
    border-radius: 12px;
  }
}

.mobile-menu-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
  margin-left: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-menu-link:hover .mobile-menu-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.mobile-submenu-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.mobile-submenu-back svg {
  transition: transform 0.2s ease;
}
.mobile-submenu-back:hover {
  color: rgba(255, 255, 255, 0.9);
}
.mobile-submenu-back:hover svg {
  transform: translateX(-3px);
}

.mobile-submenu-title {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .mobile-submenu-title {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
}

.mobile-submenu-list {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
}
.mobile-submenu-list .mobile-menu-item {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
  margin: 0;
}
.mobile-submenu-list .mobile-menu-link {
  text-align: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.25;
  height: auto;
  min-height: 44px;
  padding: 8px 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 430px) {
  .mobile-submenu-list .mobile-menu-link {
    font-size: 12px;
    padding: 8px 8px;
  }
}

.mobile-menu-languages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.mobile-menu-language:hover {
  border-color: rgba(252, 220, 170, 0.45);
  background: rgba(252, 220, 170, 0.08);
}
.mobile-menu-language.is-active {
  border-color: #fcdcaa;
  background: rgba(252, 220, 170, 0.12);
  color: #fcdcaa;
  pointer-events: none;
}

.mobile-menu-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
.mobile-menu-drawer.is-active .mobile-menu-socials {
  opacity: 1;
}
@media (max-width: 768px) {
  .mobile-menu-socials {
    gap: 8px;
    padding-top: 12px;
  }
}

.mobile-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.mobile-social-link img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.mobile-social-link:hover {
  background: rgba(244, 197, 139, 0.12);
  border-color: rgba(244, 197, 139, 0.35);
}
.mobile-social-link:hover img {
  opacity: 1;
}
@media (max-width: 768px) {
  .mobile-social-link {
    width: 38px;
    height: 38px;
  }
  .mobile-social-link img {
    width: 16px;
    height: 16px;
  }
}

.mobile-social-link--phone img {
  opacity: 0.8;
}

body.mobile-menu-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Blocks
--------------------------------------------------------------*/
/**
 * Header Styles
 */
.site-header {
  width: 100%;
  padding: 0 20px;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }
}

.header-container {
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 5px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 64px;
  min-height: 64px;
}
@media (max-width: 1024px) {
  .header-container {
    padding: 0 4px 0 4px;
  }
}
@media (max-width: 768px) {
  .header-container {
    max-width: none;
    width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 0 16px 0 9px;
    height: 48px;
    min-height: 48px;
  }
}

.hamburger-button {
  display: none;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background-color: #F4C58B;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  margin: 0;
  padding: 0;
}
.hamburger-button:hover {
  background-color: #F0B870;
}
.hamburger-button .hamburger-icon {
  width: 28px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .hamburger-button {
    display: flex;
  }
}
@media (max-width: 768px) {
  .hamburger-button {
    display: flex;
    order: 3;
    width: 28px;
    height: 20px;
    min-width: 28px;
    min-height: 20px;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin-left: 16px;
  }
  .hamburger-button .hamburger-icon {
    width: 28px;
    height: 18px;
  }
  .hamburger-button:hover {
    background: transparent;
  }
}

.site-logo {
  flex-shrink: 0;
  margin-right: 40px;
}
.site-logo a {
  display: inline-block;
  text-decoration: none;
  pointer-events: auto;
}
.site-logo img {
  width: 62px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .site-logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: auto;
    margin-left: 16px;
  }
  .site-logo a {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .site-logo {
    order: 1;
    margin: 0;
  }
  .site-logo img {
    width: 53px;
  }
}

.main-navigation {
  flex: 1;
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.menu-item {
  margin: 0;
  padding: 0;
}

.menu-link {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
  position: relative;
}
.menu-link:hover, .menu-link:visited, .menu-link:focus, .menu-link:active {
  color: #000000 !important;
  opacity: 0.7;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 74px;
}
.menu-item-has-children .menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  position: relative;
  top: -2px;
  transition: transform 0.3s ease;
}
.dropdown-icon img {
  width: 7px;
  height: auto;
  display: block;
}

.menu-item-has-children:hover .dropdown-icon {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px);
  transition: all 0.3s ease;
  pointer-events: none;
  min-width: 420px;
  max-width: 520px;
  max-height: calc(100vh - 120px);
  display: block !important;
  column-count: 2;
  column-gap: 12px;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(24px);
  pointer-events: auto;
  display: block !important;
}

.sub-menu-item {
  margin: 0;
  padding: 0;
  display: inline-block !important;
  width: 100%;
  break-inside: avoid;
}

.sub-menu-link {
  display: block !important;
  padding: 10px 12px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: normal;
  line-height: 1.35;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}
.sub-menu-link:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.05);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px !important;
  flex-shrink: 0;
  margin-left: 20px;
  height: 100%;
}
.header-right > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .header-right {
    order: 2;
    margin-left: auto;
    gap: 16px !important;
  }
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.language-selector {
  position: relative;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 0;
}
.language-selector__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: default;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: opacity 0.3s ease;
}
.language-selector__toggle:hover {
  opacity: 0.7;
}
.language-selector__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 132px;
  max-width: 170px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(60px);
  transition: all 0.3s ease;
  z-index: 1010;
}
.language-selector__item {
  margin: 0;
  padding: 0;
}
.language-selector__option {
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  font-size: 14px;
  line-height: 1.35;
}
.language-selector__option:hover {
  background: rgba(0, 0, 0, 0.06);
}
.language-selector__item.is-active .language-selector__option {
  background: rgba(0, 0, 0, 0.08);
}
.language-selector .language-text {
  display: inline-block;
}
.language-selector .dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  position: relative;
  top: -2px;
  transition: transform 0.3s ease;
}
.language-selector .dropdown-icon img {
  width: 7px;
  height: auto;
  display: block;
}
.language-selector:hover .dropdown-icon {
  transform: rotate(180deg);
}
.language-selector::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 74px;
}
.language-selector:hover .dropdown-icon, .language-selector:focus-within .dropdown-icon {
  transform: rotate(180deg);
}
.language-selector:hover .language-selector__menu, .language-selector:focus-within .language-selector__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(24px);
}
@media (max-width: 768px) {
  .language-selector {
    display: none;
  }
}

.header-email {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.header-email:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header-email {
    display: none;
  }
}

.header-right .whatsapp-button,
a.whatsapp-button,
.whatsapp-button {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  border-radius: 50% !important;
  background-color: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: background-color 0.3s ease !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  scale: 1 !important;
}
.header-right .whatsapp-button:hover,
a.whatsapp-button:hover,
.whatsapp-button:hover {
  background-color: #20B858 !important;
  width: 56px !important;
  height: 56px !important;
  transform: none !important;
  scale: 1 !important;
}
.header-right .whatsapp-button svg,
a.whatsapp-button svg,
.whatsapp-button svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  display: block !important;
  flex-shrink: 0 !important;
}
@media (max-width: 768px) {
  .header-right .whatsapp-button,
  a.whatsapp-button,
  .whatsapp-button {
    display: none !important;
  }
}

.header-right .phone-button,
a.phone-button,
.phone-button {
  padding: 0 16px !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  border-radius: 50px !important;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%) !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #000000 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  line-height: 1 !important;
  margin: 0 !important;
  vertical-align: middle !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}
.header-right .phone-button::after,
a.phone-button::after,
.phone-button::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #FEE5C0 0%, #F5CE9B 50%, #F8D5A5 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
.header-right .phone-button:hover,
a.phone-button:hover,
.phone-button:hover {
  color: #000000 !important;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%) !important;
  background-color: transparent !important;
  transform: none !important;
  opacity: 1 !important;
}
.header-right .phone-button:hover::after,
a.phone-button:hover::after,
.phone-button:hover::after {
  opacity: 1 !important;
}
.header-right .phone-button:active,
a.phone-button:active,
.phone-button:active {
  color: #000000 !important;
  background: linear-gradient(to right, #FCD9A4 0%, #F3C17B 50%, #F6C88B 100%) !important;
  background-color: transparent !important;
  transform: none !important;
}
.header-right .phone-button:active::after,
a.phone-button:active::after,
.phone-button:active::after {
  opacity: 0 !important;
}
.header-right .phone-button:visited, .header-right .phone-button:focus,
a.phone-button:visited,
a.phone-button:focus,
.phone-button:visited,
.phone-button:focus {
  color: #000000 !important;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%) !important;
  background-color: transparent !important;
}
@media (max-width: 768px) {
  .header-right .phone-button,
  a.phone-button,
  .phone-button {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    padding: 0 !important;
    font-size: 12px !important;
  }
}

/**
 * Footer Styles
 */
.site-footer {
  width: 100%;
  background: #0c0f17;
  color: #ffffff;
  padding: 40px 0 50px;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 1024px) {
  .site-footer::before {
    width: 944px;
  }
}
@media (max-width: 768px) {
  .site-footer::before {
    width: calc(100% - 40px);
  }
}

.footer-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 70px 165px auto 160px auto 160px auto 80px auto 1fr;
  grid-template-rows: auto auto;
  grid-auto-flow: row;
  gap: 0;
  align-items: start;
}
@media (max-width: 1440px) {
  .footer-container {
    grid-template-columns: 70px 206px auto 250px auto 1fr;
  }
}
@media (max-width: 1024px) {
  .footer-container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
    grid-template-columns: 120px 140px 160px 160px 320px;
    grid-template-rows: auto auto;
    column-gap: 11px;
    row-gap: 0;
  }
}
@media (max-width: 768px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
    row-gap: 0;
    padding: 0 20px !important;
    max-width: 100vw !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    align-items: start;
    margin: 0 auto;
    grid-auto-rows: auto;
  }
}

.footer-left {
  grid-column: 1;
  grid-row: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
@media (max-width: 1024px) {
  .footer-left {
    grid-column: 1/-1;
    grid-row: 1;
    justify-content: flex-start;
    min-height: 0;
    width: 70px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .footer-left {
    grid-column: 1/-1;
    grid-row: 1;
    width: auto;
    margin-bottom: 40px;
  }
}

.footer-logo {
  margin-bottom: auto;
}
.footer-logo a {
  text-decoration: none;
  display: inline-block;
}
.footer-logo img {
  width: 70px;
  height: auto;
  display: block;
}

.footer-bottom {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 90px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .footer-bottom {
    align-items: flex-end;
  }
}
@media (max-width: 1024px) {
  .footer-bottom {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: end;
    gap: 0;
    margin-top: 40px;
    padding: 0 20px !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .footer-bottom-links {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-bottom-links {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer-bottom-links a,
.footer-bottom-links .footer-copyright {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover,
.footer-bottom-links .footer-copyright:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px 0;
}

.footer-menu {
  grid-column: 3;
  grid-row: 1;
}
@media (max-width: 1440px) {
  .footer-menu {
    grid-column: 3;
    grid-row: 1;
  }
}
@media (max-width: 1024px) {
  .footer-menu {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .footer-menu {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    margin-bottom: 40px;
    margin-top: 0;
  }
}
.footer-menu .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px !important;
}
.footer-menu .footer-menu-list li {
  margin: 0;
  padding: 0;
}
.footer-menu .footer-menu-list a {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin: 0;
  padding: 0;
}
.footer-menu .footer-menu-list a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .footer-menu .footer-menu-list a {
    font-size: 13px;
  }
}

.footer-language {
  grid-column: 5;
  grid-row: 1;
}
@media (max-width: 1440px) {
  .footer-language {
    grid-column: 3;
    grid-row: 2;
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .footer-language {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer-language {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    margin-top: 294px;
  }
}

.footer-language-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px !important;
}
.footer-language-list li {
  margin: 0;
  padding: 0;
}

.footer-language-item {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.footer-language-item > span {
  line-height: 1;
  margin: 0;
  padding: 0;
}
.footer-language-item a {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin: 0;
  padding: 0;
}
.footer-language-item a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .footer-language-item a {
    font-size: 13px;
  }
}
.footer-language-item.footer-language-item-active .footer-language-check {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.footer-language-item .footer-language-check {
  display: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.footer-services {
  grid-column: 7/span 3;
  grid-row: 1/span 2;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 0;
  align-items: start;
}
@media (max-width: 1440px) {
  .footer-services {
    grid-column: 5;
    grid-row: 1/span 2;
    grid-template-columns: auto;
  }
}
@media (max-width: 1024px) {
  .footer-services {
    grid-column: 3/span 2;
    grid-row: 2;
    grid-template-columns: auto auto;
    column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-services {
    grid-column: 2;
    grid-row: 3;
    grid-template-columns: 1fr;
    column-gap: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: start;
  }
}

.footer-services-title {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 768px) {
  .footer-services-title {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    margin-bottom: 0;
  }
}

.footer-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px !important;
}
.footer-services-list li {
  margin: 0;
  padding: 0;
}
.footer-services-list a {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin: 0;
  padding: 0;
}
.footer-services-list a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .footer-services-list a {
    font-size: 13px;
  }
}

.footer-services-list-left {
  grid-column: 1;
  grid-row: 2;
}
@media (max-width: 768px) {
  .footer-services-list-left {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }
}

.footer-services-list-right {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 1440px) {
  .footer-services-list-right {
    grid-column: 1;
    grid-row: 3;
    margin-top: 16px;
  }
}
@media (max-width: 1024px) {
  .footer-services-list-right {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer-services-list-right {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    order: 2;
  }
}

.footer-right {
  grid-column: 10;
  grid-row: 1/-1;
  width: 325px;
  justify-self: end;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  .footer-right {
    grid-column: 6;
  }
}
@media (max-width: 1024px) {
  .footer-right {
    grid-column: 5;
    grid-row: 2;
    width: auto;
    max-width: 320px;
    justify-self: end;
  }
}
@media (max-width: 768px) {
  .footer-right {
    grid-column: 1/-1;
    grid-row: 2;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    justify-self: stretch !important;
    margin-bottom: 40px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }
}

.footer-phone {
  background: #ffffff;
  border-radius: 50px;
  padding: 16px 24px;
  text-align: center;
}
.footer-phone a {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .footer-phone {
    padding: 14px 20px;
  }
  .footer-phone a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer-phone {
    display: none;
  }
}

.footer-social {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer-social {
    margin-top: 0;
  }
}

.footer-social-title,
.footer-email-title {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer-social-title {
  color: #ffffff;
  margin: 0 0 12px 0;
}

.footer-email {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer-email {
    display: none;
  }
}

.footer-email-title {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px 0;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}
@media (max-width: 1024px) {
  .footer-social-icons {
    gap: 8px;
  }
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all 0.2s ease;
}
.footer-social-icon:hover {
  border-color: rgb(255, 255, 255);
}
.footer-social-icon img {
  width: 25px;
  height: 25px;
  display: block;
  transition: transform 0.2s ease;
}
.footer-social-icon:hover img {
  transform: scale(0.9);
}
@media (max-width: 1024px) {
  .footer-social-icon {
    width: 48px;
    height: 48px;
  }
  .footer-social-icon img {
    width: 22px;
    height: 22px;
  }
}

.footer-email-link {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-email-link:hover {
  opacity: 0.7;
}

.footer-developed span {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .footer-developed {
    grid-column: 2;
    align-self: end;
    justify-self: end;
    text-align: right;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(30px + env(safe-area-inset-bottom, 0px));
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  animation: gts-whatsapp-pulse 2.1s ease-in-out infinite;
}
.whatsapp-float img {
  width: 22px;
  height: 22px;
  display: block;
}
@media (max-width: 768px) {
  .whatsapp-float {
    display: flex;
  }
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

@keyframes gts-whatsapp-pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.35;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.2;
  }
}
/**
 * Contacts Page — aligned with main: pill CTA (why-us-heading-pill), title (occasions),
 * cards (why-us-item), icons (custom-itinerary), form (hero booking-form).
 */
.site-main--contacts {
  padding-top: 0;
  background: #0C0F17;
}

.contacts-hero {
  width: 100%;
  background: #0C0F17;
  padding: 140px 0 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  .contacts-hero {
    padding: 120px 0 60px;
  }
}
@media (max-width: 768px) {
  .contacts-hero {
    padding: 100px 0 48px;
  }
}

.contacts-hero__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .contacts-hero__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .contacts-hero__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.contacts-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 43px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding-left: 24px;
  padding-right: 24px;
  width: max-content;
  min-width: 103px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
  margin-bottom: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media (max-width: 1024px) {
  .contacts-hero__cta {
    font-size: 12px;
  }
}
.contacts-hero__cta:hover {
  opacity: 0.9;
  color: #fff;
}

.contacts-hero__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (max-width: 1024px) {
  .contacts-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .contacts-hero__title {
    font-size: 28px;
    text-align: center;
  }
}

.contacts-main {
  width: 100%;
  background: #0C0F17;
  padding: 0 0 80px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contacts-main {
    padding: 0 0 60px;
  }
}

.contacts-main__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: calc((100% - 48px) * 0.2462121212) calc((100% - 48px) * 0.2462121212) calc((100% - 48px) * 0.5075757576);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .contacts-main__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
    gap: 20px;
    grid-template-columns: calc((100% - 40px) * 0.2462121212) calc((100% - 40px) * 0.2462121212) calc((100% - 40px) * 0.5075757576);
  }
}
@media (max-width: 768px) {
  .contacts-main__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
}

.contacts-main__card,
.contacts-main__col {
  border-radius: 0;
  padding: 28px 24px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contacts-main__card,
  .contacts-main__col {
    padding: 24px 20px;
  }
}

.contacts-main__card--whatsapp,
.contacts-main__card--email,
.contacts-main__col--whatsapp,
.contacts-main__col--email {
  background: transparent;
  border: 1px inset rgba(255, 255, 255, 0.16);
}

.contacts-main__card--form,
.contacts-main__col--form {
  background: transparent;
  border: none;
  padding: 0;
}

.contacts-main__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.contacts-main__channel {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.contacts-main__card--form .contacts-main__channel {
  display: none;
}

.contacts-main__card--form .contacts-main__form-wrap {
  background: #fff;
  padding: 24px 20px;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
}

.contacts-main__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contacts-main__icon-wrap:hover {
  opacity: 0.9;
  transform: scale(1.08);
}
.contacts-main__icon-wrap:active {
  transform: scale(1.02);
}
.contacts-main__icon-wrap img,
.contacts-main__icon-wrap svg {
  display: block;
  width: 24px;
  height: 24px;
}

.contacts-main__icon-wrap--whatsapp {
  background: #25d366;
}
.contacts-main__icon-wrap--whatsapp img {
  filter: brightness(0) invert(1);
}

.contacts-main__icon-wrap--email {
  background: #4997f6;
}
.contacts-main__icon-wrap--email img {
  filter: brightness(0) invert(1);
}

.contacts-main__desc {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}

.contacts-main__card--form .contacts-main__desc {
  display: none;
}

.contacts-main__link {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contacts-main__link:hover {
  opacity: 0.9;
  color: #fff;
}

.contacts-main__link--underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-main__card--form .contacts-main__link {
  display: none;
}

.contacts-main__form-wrap {
  width: 100%;
}

.contacts-main__form-intro {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 24px;
}

.contacts-main__form-success {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0c0f17;
  margin: 0;
  padding: 16px 0;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts-form__row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .contacts-form__row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
}

.contacts-form__group {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .contacts-form__group {
    margin-bottom: 20px;
  }
  .contacts-form__group:last-child {
    margin-bottom: 0;
  }
}

.contacts-form__group--full {
  flex: 1 1 100%;
}

.contacts-form__group input,
.contacts-form__group textarea {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0;
  font-size: 14px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  background: transparent;
  color: #000;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  height: 40px;
  min-height: 40px;
}
.contacts-form__group input::placeholder,
.contacts-form__group textarea::placeholder {
  color: rgba(0, 0, 0, 0.56);
  opacity: 1;
}
.contacts-form__group input:focus,
.contacts-form__group textarea:focus {
  outline: none;
  border-bottom-color: rgba(0, 0, 0, 0.32);
}

.contacts-form__group input {
  display: block;
}

.contacts-form__group textarea {
  resize: none;
  height: 40px;
  min-height: 40px;
  line-height: 1.5;
  display: block;
  overflow: hidden;
}

.contacts-form__consent {
  margin-top: 24px;
  margin-bottom: 24px;
}
.contacts-form__consent label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contacts-form__consent label span {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000;
  flex: 1;
  min-width: 0;
}
.contacts-form__consent a,
.contacts-form__consent .contacts-form__consent-link,
.contacts-form__consent .contacts-form__consent-link:hover,
.contacts-form__consent .contacts-form__consent-link:focus,
.contacts-form__consent .contacts-form__consent-link:visited {
  color: #000 !important;
  text-decoration: none !important;
}
.contacts-form__consent input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0 !important;
  position: relative;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}
.contacts-form__consent input[type=checkbox]:checked {
  border-color: #000;
  background: transparent;
}
.contacts-form__consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

.contacts-form__submit {
  width: 100%;
  max-width: 200px;
  height: 56px;
  padding: 0;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contacts-form__submit:hover {
  background: linear-gradient(to right, #FEE5C0 0%, #F5CE9B 50%, #F8D5A5 100%);
}
.contacts-form__submit:active {
  background: linear-gradient(to right, #FCD9A4 0%, #F3C17B 50%, #F6C88B 100%);
}

/**
 * Blog archive page styles (hero + filters + cards).
 */
.site-main--blog {
  padding-top: 0;
  background: #0C0F17;
}

.blog-hero {
  width: 100%;
  background: #0C0F17;
  padding: 140px 0 60px;
  text-align: center;
}
@media (max-width: 1024px) {
  .blog-hero {
    padding: 120px 0 48px;
  }
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 0 40px;
  }
}

.blog-hero__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .blog-hero__container {
    width: 100%;
    max-width: 944px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .blog-hero__container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
}

.blog-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 43px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding-left: 24px;
  padding-right: 24px;
  width: max-content;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.blog-hero__pill-text {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.blog-hero__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (max-width: 1024px) {
  .blog-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .blog-hero__title {
    font-size: 28px;
  }
}

.blog-hero__subtitle {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (max-width: 1024px) {
  .blog-hero__subtitle {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .blog-hero__subtitle {
    font-size: 28px;
  }
}

.blog-archive {
  width: 100%;
  background: #0C0F17;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .blog-archive {
    padding-bottom: 60px;
  }
}

.blog-archive__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .blog-archive__container {
    width: 100%;
    max-width: 944px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .blog-archive__container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
}

.blog-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  align-items: center;
  width: 100%;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .blog-filters {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .blog-filters {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

.blog-filters__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.0784313725);
  color: #ffffff;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.blog-filters__item:hover {
  opacity: 0.9;
}
.blog-filters__item.is-active {
  background: #ffffff;
  color: #000000;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 80px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .blog-grid {
    gap: 20px 14px;
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.blog-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  overflow: hidden;
  height: 335px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .blog-card {
    height: 335px;
  }
}
@media (max-width: 768px) {
  .blog-card {
    height: 278px;
  }
}

.blog-card__wrap {
  display: flex;
  gap: 20px;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1024px) {
  .blog-card__wrap {
    gap: 0;
  }
}
.blog-card__wrap:hover .blog-card__link {
  opacity: 0.8;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.blog-card__wrap:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -2px;
}

.blog-card__content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  justify-content: space-between;
  min-width: 0;
}
@media (max-width: 1024px) {
  .blog-card__content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .blog-card__content {
    padding: 20px;
  }
}

.blog-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.blog-card__date {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
@media (max-width: 768px) {
  .blog-card__date {
    font-size: 12px;
  }
}

.blog-card__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  word-break: break-word;
}
@media (max-width: 1024px) {
  .blog-card__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .blog-card__title {
    font-size: 18px;
  }
}

.blog-card__link {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0;
  margin-top: auto;
  align-self: flex-start;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
@media (max-width: 768px) {
  .blog-card__link {
    font-size: 12px;
  }
}

.blog-card__image {
  flex: 0 0 50%;
  overflow: hidden;
  display: block;
  height: 100%;
}
@media (max-width: 1024px) {
  .blog-card__image {
    flex: 0 0 175px;
    width: 175px;
  }
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card__img--placeholder {
  background: rgba(255, 255, 255, 0.08);
}

.blog-archive__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.blog-show-more {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
@media (max-width: 768px) {
  .blog-show-more {
    font-size: 12px;
  }
}
.blog-show-more:hover {
  opacity: 0.8;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.blog-archive__empty {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 40px 0 0;
}

/**
 * Single blog post styles.
 */
.site-main--single-post {
  padding-top: 0;
  background: #0C0F17;
}

.post-hero {
  width: 100%;
  background: #0C0F17;
  padding: 140px 0 60px;
}
@media (max-width: 1024px) {
  .post-hero {
    padding: 120px 0 48px;
  }
}
@media (max-width: 768px) {
  .post-hero {
    padding: 100px 0 40px;
  }
}

.post-hero__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1440px) {
  .post-hero__container {
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .post-hero__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
    grid-template-columns: 180px 1fr 180px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .post-hero__container {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.post-share {
  grid-column: 1;
}
@media (max-width: 768px) {
  .post-share {
    grid-column: 1;
    order: 2;
  }
}

.post-share__title {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.post-share__icons {
  display: flex;
  gap: 12px;
}

.post-share__icon.footer-social-icon {
  width: 56px;
  height: 56px;
}
@media (max-width: 1024px) {
  .post-share__icon.footer-social-icon {
    width: 48px;
    height: 48px;
  }
}

.post-hero__media {
  grid-column: 2;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .post-hero__media {
    grid-column: 1;
    order: 1;
  }
}

.post-hero__img,
.post-hero__img--placeholder {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
@media (max-width: 1440px) {
  .post-hero__img,
  .post-hero__img--placeholder {
    height: 480px;
  }
}
@media (max-width: 1024px) {
  .post-hero__img,
  .post-hero__img--placeholder {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .post-hero__img,
  .post-hero__img--placeholder {
    height: 260px;
  }
}

.post-hero__img--placeholder {
  background: rgba(255, 255, 255, 0.08);
}

.post-meta {
  grid-column: 3;
  text-align: right;
}
@media (max-width: 768px) {
  .post-meta {
    grid-column: 1;
    order: 3;
    text-align: left;
  }
}

.post-meta__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .post-meta__group {
    margin-bottom: 18px;
  }
}

.post-meta__label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.post-meta__value {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

.post-body {
  width: 100%;
  background: #0C0F17;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .post-body {
    padding-bottom: 60px;
  }
}

.post-body__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .post-body__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
    grid-template-columns: 180px 1fr 180px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .post-body__container {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.post-body__article {
  grid-column: 2;
  min-width: 0;
}
@media (max-width: 768px) {
  .post-body__article {
    grid-column: 1;
  }
}

.post-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 24px 0;
}
@media (max-width: 1440px) {
  .post-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .post-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .post-title {
    font-size: 28px;
  }
}

.post-content {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
}
.post-content p {
  margin: 0 0 16px 0;
}
.post-content h2,
.post-content h3 {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 32px 0 12px 0;
}
.post-content h2 {
  font-size: 28px;
}
@media (max-width: 1024px) {
  .post-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .post-content h2 {
    font-size: 20px;
  }
}
.post-content h3 {
  font-size: 22px;
}
@media (max-width: 1024px) {
  .post-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .post-content h3 {
    font-size: 16px;
  }
}
.post-content hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 32px 0;
}
.post-content ul,
.post-content ol {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
.post-content li {
  margin: 0 0 8px 0;
}

.post-other {
  width: 100%;
  background: #0C0F17;
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .post-other {
    padding-bottom: 80px;
  }
}

.post-other__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .post-other__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .post-other__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.post-other__heading {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 40px 0;
}
@media (max-width: 1440px) {
  .post-other__heading {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .post-other__heading {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .post-other__heading {
    font-size: 28px;
  }
}

.post-other__footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.post-other__all {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
@media (max-width: 768px) {
  .post-other__all {
    font-size: 12px;
  }
}
.post-other__all:hover {
  opacity: 0.8;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

/**
 * Fleet page styles (hero + tabs + helicopters intro).
 */
.site-main--fleet {
  padding-top: 0;
  background: #0C0F17;
}

.fleet-hero {
  width: 100%;
  background: #0C0F17;
  padding: 140px 0 60px;
}
@media (max-width: 1024px) {
  .fleet-hero {
    padding: 120px 0 48px;
  }
}
@media (max-width: 768px) {
  .fleet-hero {
    padding: 100px 0 40px;
  }
}

.fleet-hero__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .fleet-hero__container {
    width: 100%;
    max-width: 944px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .fleet-hero__container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
}

.fleet-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 43px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding-left: 24px;
  padding-right: 24px;
  width: max-content;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.fleet-hero__cta:hover {
  opacity: 0.9;
  color: #fff;
}

.fleet-hero__top {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .fleet-hero__top {
    grid-template-columns: 1fr 480px;
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .fleet-hero__top {
    grid-template-columns: 1fr 380px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .fleet-hero__top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
}

.fleet-hero__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1440px) {
  .fleet-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .fleet-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .fleet-hero__title {
    font-size: 28px;
  }
}

.fleet-hero__desc {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0 0 0;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .fleet-hero__desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .fleet-hero__desc {
    margin-top: 0;
  }
}

.fleet-hero__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin-top: 40px;
}
@media (max-width: 768px) {
  .fleet-hero__divider {
    margin-top: 24px;
  }
}

.fleet-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .fleet-tabs {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .fleet-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
}

.fleet-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.0784313725);
  color: #ffffff;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.fleet-tabs__item:hover {
  opacity: 0.9;
}
.fleet-tabs__item.is-active {
  background: #ffffff;
  color: #000000;
}

.fleet-heli {
  width: 100%;
  background: #0C0F17;
  padding: 80px 0 0;
}
@media (max-width: 1024px) {
  .fleet-heli {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .fleet-heli {
    padding-top: 48px;
  }
}

.fleet-heli__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1440px) {
  .fleet-heli__container {
    grid-template-columns: 1fr 480px;
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .fleet-heli__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
    grid-template-columns: 1fr 380px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .fleet-heli__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.fleet-heli__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1440px) {
  .fleet-heli__title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .fleet-heli__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .fleet-heli__title {
    font-size: 28px;
  }
}

.fleet-heli__list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.fleet-heli__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 1024px) {
  .fleet-heli__item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}
@media (max-width: 768px) {
  .fleet-heli__item {
    grid-template-columns: 56px 1fr;
    padding: 20px 0;
  }
}

.fleet-heli__icon {
  width: 26px;
  height: 26px;
  display: block;
}

.fleet-heli__text {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 1024px) {
  .fleet-heli__text {
    font-size: 14px;
  }
}

.fleet-ground {
  width: 100%;
  background: #0C0F17;
  padding: 60px 0 28px;
}
@media (max-width: 1024px) {
  .fleet-ground {
    padding: 48px 0 24px;
  }
}
@media (max-width: 768px) {
  .fleet-ground {
    padding: 40px 0 20px;
  }
}

.fleet-ground__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .fleet-ground__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .fleet-ground__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.fleet-ground-row {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 1440px) {
  .fleet-ground-row {
    grid-template-columns: 420px 1fr;
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .fleet-ground-row {
    grid-template-columns: 360px 1fr;
    gap: 20px;
    padding-top: 32px;
  }
}
@media (max-width: 768px) {
  .fleet-ground-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 28px;
  }
}

.fleet-ground-row__right {
  min-width: 0;
}

.fleet-ground-row__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}

.page-template-page-fleet .fleet-ground-row {
  border-top: none;
  border-bottom: none;
}

.page-template-page-fleet .fleet-ground-row__left {
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 1024px) {
  .page-template-page-fleet .fleet-ground-row__left {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .page-template-page-fleet .fleet-ground-row__left {
    padding-top: 14px;
    padding-bottom: 16px;
  }
}

.page-template-page-fleet .fleet-ground-row__desc {
  margin-top: auto;
}

.page-template-page-fleet .fleet-ground-row__view {
  margin-top: 0;
}

.fleet-ground-row__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1440px) {
  .fleet-ground-row__title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .fleet-ground-row__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .fleet-ground-row__title {
    font-size: 28px;
  }
}

.fleet-ground-row__desc {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 360px;
}
@media (max-width: 1024px) {
  .fleet-ground-row__desc {
    font-size: 14px;
  }
}

.fleet-ground-row__view {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: auto;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
@media (max-width: 768px) {
  .fleet-ground-row__view {
    margin-top: 0;
    font-size: 12px;
  }
}
.fleet-ground-row__view:hover {
  opacity: 0.8;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.fleet-ground__slider-wrap {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  isolation: isolate;
  min-width: 0;
}

.fleet-cat-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.fleet-cat-slider .fleet-card {
  height: 100%;
}

.fleet-cat-slider .swiper-wrapper {
  min-width: 0;
}

.fleet-ground__slider-wrap .nav-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.fleet-ground__slider-wrap .nav-arrow {
  pointer-events: auto;
  width: 56px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.fleet-ground__slider-wrap .nav-arrow:hover {
  opacity: 0.9;
}

.fleet-ground__slider-wrap .nav-arrow-icon {
  filter: brightness(0);
}

.fleet-bottom-cta {
  background: #0C0F17;
  padding: 24px 0 56px;
}
@media (max-width: 1024px) {
  .fleet-bottom-cta {
    padding: 20px 0 48px;
  }
}
@media (max-width: 768px) {
  .fleet-bottom-cta {
    padding: 16px 0 40px;
  }
}

.fleet-bottom-cta__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .fleet-bottom-cta__container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .fleet-bottom-cta__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.fleet-bottom-cta__button {
  display: block;
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  border: 0;
  background: #e6c287;
  color: #141414;
  text-align: center;
  text-decoration: none;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 56px;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .fleet-bottom-cta__button {
    min-height: 52px;
    line-height: 52px;
    font-size: 14px;
  }
}
.fleet-bottom-cta__button:hover {
  opacity: 0.92;
}

.fleet-standards {
  background: #0C0F17;
  padding: 24px 0 80px;
}
@media (max-width: 1024px) {
  .fleet-standards {
    padding: 20px 0 64px;
  }
}
@media (max-width: 768px) {
  .fleet-standards {
    padding: 16px 0 40px;
  }
}

.fleet-standards__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.fleet-standards__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .fleet-standards__top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
}

.fleet-standards__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1440px) {
  .fleet-standards__title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .fleet-standards__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .fleet-standards__title {
    font-size: 30px;
  }
}

.fleet-standards__lead {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1024px) {
  .fleet-standards__lead {
    max-width: 760px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .fleet-standards__lead {
    font-size: 14px;
    line-height: 1.4;
  }
}

.fleet-standards__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1440px) {
  .fleet-standards__grid {
    gap: 12px;
  }
}
@media (max-width: 1024px) {
  .fleet-standards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .fleet-standards__grid {
    grid-template-columns: 1fr;
  }
}

.fleet-standards-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 272px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

.fleet-standards-card--dark {
  background: rgba(12, 15, 23, 0.68);
}

.fleet-standards-card--light {
  background: #f1f1f1;
  border-color: rgba(0, 0, 0, 0.08);
}

.fleet-standards-card--image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
}
@media (max-width: 1024px) {
  .fleet-standards-card--image {
    min-height: 220px;
  }
}

.fleet-standards-card__icon-wrap {
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}

.fleet-standards-card__icon-wrap--light {
  background: #f4c58b;
}

.fleet-standards-card__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.fleet-standards-card__text {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
  max-width: 95%;
}
@media (max-width: 1024px) {
  .fleet-standards-card__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .fleet-standards-card__text {
    font-size: 14px;
  }
}

.fleet-standards-card__text--dark {
  color: #0c0f17;
}

.site-main--fleet .custom-itinerary-block--limousine {
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .site-main--fleet .custom-itinerary-block--limousine {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .site-main--fleet .custom-itinerary-block--limousine {
    margin-top: 20px;
  }
}

.single-fleet-product {
  background: #0C0F17;
  padding: 112px 0 40px;
}
@media (max-width: 1024px) {
  .single-fleet-product {
    padding: 96px 0 36px;
  }
}
@media (max-width: 768px) {
  .single-fleet-product {
    padding: 84px 0 32px;
  }
}

.single-fleet-product__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .single-fleet-product__container {
    max-width: none;
    width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 0;
  }
}

.single-fleet-product__breadcrumbs {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .single-fleet-product__breadcrumbs {
    margin-bottom: 12px;
  }
}
.single-fleet-product__breadcrumbs .woocommerce-breadcrumb {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.single-fleet-product__breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.single-fleet-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
@media (max-width: 1440px) {
  .single-fleet-product__grid {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .single-fleet-product__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.single-fleet-product__gallery-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 15, 23, 0.85);
  min-width: 0;
}

.single-fleet-product__gallery {
  overflow: hidden;
}

.single-fleet-product__slide {
  aspect-ratio: 4/3;
  background: #0f121b;
}

.single-fleet-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-fleet-product__gallery-wrap .nav-arrows {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
  padding: 0 4px;
}
@media (max-width: 768px) {
  .single-fleet-product__gallery-wrap .nav-arrows {
    padding: 0 2px;
  }
}

.single-fleet-product__gallery-wrap .nav-arrow {
  pointer-events: all;
  width: 56px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .single-fleet-product__gallery-wrap .nav-arrow {
    width: 48px;
    height: 36px;
  }
}

.single-fleet-product__gallery-wrap .nav-arrow:hover {
  opacity: 0.9;
}

.single-fleet-product__gallery-wrap .nav-arrow-icon {
  filter: brightness(0);
}

.single-fleet-product__content {
  padding: 0;
}

.single-fleet-product__title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 16px;
}
@media (max-width: 1440px) {
  .single-fleet-product__title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .single-fleet-product__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .single-fleet-product__title {
    font-size: 30px;
  }
}

.single-fleet-product__description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 92%;
}
@media (max-width: 1024px) {
  .single-fleet-product__description {
    max-width: 100%;
    font-size: 14px;
  }
}
.single-fleet-product__description p {
  margin: 0;
}

.single-fleet-product__consult {
  max-width: 320px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .single-fleet-product__consult {
    max-width: 100%;
  }
}

.single-fleet-product__specs {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.single-fleet-product__specs-title {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin: 20px 0 10px;
}

.single-fleet-product__spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .single-fleet-product__spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.single-fleet-product__spec-label,
.single-fleet-product__spec-value {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .single-fleet-product__spec-label,
  .single-fleet-product__spec-value {
    font-size: 14px;
  }
}

.single-fleet-product__spec-label {
  color: rgba(255, 255, 255, 0.7);
}

.single-fleet-product__spec-value {
  color: #ffffff;
}

.single-fleet-related {
  background: #0C0F17;
  padding: 24px 0 60px;
}
@media (max-width: 1024px) {
  .single-fleet-related {
    padding: 20px 0 48px;
  }
}
@media (max-width: 768px) {
  .single-fleet-related {
    padding: 16px 0 40px;
  }
}

.single-fleet-related__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .single-fleet-related__container {
    max-width: none;
    width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 0;
  }
}

/**
 * FAQ Block Styles
 * Clear answers to help you book with confidence.
 */
.faq-block {
  width: 100%;
  margin-top: 150px;
  padding: 0;
  overflow: visible;
}
@media (max-width: 1440px) {
  .faq-block {
    margin-top: 150px;
  }
}
@media (max-width: 1024px) {
  .faq-block {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  .faq-block {
    margin-top: 80px;
  }
}

.faq-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 1024px) {
  .faq-container {
    max-width: 944px !important;
    padding: 0 20px !important;
    box-sizing: content-box !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}
@media (max-width: 768px) {
  .faq-container {
    padding: 0 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 43px;
  border-radius: 999px;
}

.faq-pill-text {
  color: #0C0F17;
}

.faq-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 32px 0 0 0;
  max-width: 920px;
}
@media (max-width: 1024px) {
  .faq-title {
    font-size: 33px;
  }
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 21px;
    line-height: 1.24;
    max-width: 24ch;
  }
}

.faq-accordions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  width: 100%;
  max-width: 100%;
  margin-top: 80px;
  align-items: start;
}

.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
.faq-item.faq-item--open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  appearance: none;
}
@media (max-width: 1440px) {
  .faq-item__summary {
    padding: 25px 24px 24px 24px;
  }
}
@media (max-width: 1024px) {
  .faq-item__summary {
    padding: 25px 24px 24px 24px;
  }
}
.faq-item__summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.faq-item__question {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
  flex: 1;
  min-width: 0;
}
@media (max-width: 1440px) {
  .faq-item__question {
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .faq-item__question {
    line-height: 24px;
  }
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item__content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item__content {
  padding: 0 24px 24px 24px;
  box-sizing: border-box;
  text-align: left;
}
.faq-item__content p {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
  padding-top: 0;
}

@media (max-width: 768px) {
  .faq-accordions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 40px;
    width: 100%;
  }
  .faq-accordion-col {
    gap: 10px;
    width: 100%;
  }
  .faq-item__summary {
    padding: 16px;
  }
  .faq-item__question {
    font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
  }
  .faq-item__content {
    padding: 0 16px 16px 16px;
  }
  .faq-item__content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/**
 * Front Page Styles
 * Main page specific styles
 */
.home .site-main,
.front-page .site-main {
  overflow: visible;
}

.white-sections-wrapper {
  background: #fff;
}

/**
 * Header Styles
 */
.site-header {
  width: 100%;
  padding: 0 20px;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }
}

.header-container {
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 5px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 64px;
  min-height: 64px;
}
@media (max-width: 1024px) {
  .header-container {
    padding: 0 4px 0 4px;
  }
}
@media (max-width: 768px) {
  .header-container {
    max-width: none;
    width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 0 16px 0 9px;
    height: 48px;
    min-height: 48px;
  }
}

.hamburger-button {
  display: none;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background-color: #F4C58B;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  margin: 0;
  padding: 0;
}
.hamburger-button:hover {
  background-color: #F0B870;
}
.hamburger-button .hamburger-icon {
  width: 28px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .hamburger-button {
    display: flex;
  }
}
@media (max-width: 768px) {
  .hamburger-button {
    display: flex;
    order: 3;
    width: 28px;
    height: 20px;
    min-width: 28px;
    min-height: 20px;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin-left: 16px;
  }
  .hamburger-button .hamburger-icon {
    width: 28px;
    height: 18px;
  }
  .hamburger-button:hover {
    background: transparent;
  }
}

.site-logo {
  flex-shrink: 0;
  margin-right: 40px;
}
.site-logo a {
  display: inline-block;
  text-decoration: none;
  pointer-events: auto;
}
.site-logo img {
  width: 62px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .site-logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: auto;
    margin-left: 16px;
  }
  .site-logo a {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .site-logo {
    order: 1;
    margin: 0;
  }
  .site-logo img {
    width: 53px;
  }
}

.main-navigation {
  flex: 1;
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.menu-item {
  margin: 0;
  padding: 0;
}

.menu-link {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
  position: relative;
}
.menu-link:hover, .menu-link:visited, .menu-link:focus, .menu-link:active {
  color: #000000 !important;
  opacity: 0.7;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 74px;
}
.menu-item-has-children .menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  position: relative;
  top: -2px;
  transition: transform 0.3s ease;
}
.dropdown-icon img {
  width: 7px;
  height: auto;
  display: block;
}

.menu-item-has-children:hover .dropdown-icon {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px);
  transition: all 0.3s ease;
  pointer-events: none;
  min-width: 420px;
  max-width: 520px;
  max-height: calc(100vh - 120px);
  display: block !important;
  column-count: 2;
  column-gap: 12px;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(24px);
  pointer-events: auto;
  display: block !important;
}

.sub-menu-item {
  margin: 0;
  padding: 0;
  display: inline-block !important;
  width: 100%;
  break-inside: avoid;
}

.sub-menu-link {
  display: block !important;
  padding: 10px 12px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: normal;
  line-height: 1.35;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}
.sub-menu-link:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.05);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px !important;
  flex-shrink: 0;
  margin-left: 20px;
  height: 100%;
}
.header-right > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .header-right {
    order: 2;
    margin-left: auto;
    gap: 16px !important;
  }
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.language-selector {
  position: relative;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 0;
}
.language-selector__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: default;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: opacity 0.3s ease;
}
.language-selector__toggle:hover {
  opacity: 0.7;
}
.language-selector__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 132px;
  max-width: 170px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(60px);
  transition: all 0.3s ease;
  z-index: 1010;
}
.language-selector__item {
  margin: 0;
  padding: 0;
}
.language-selector__option {
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  font-size: 14px;
  line-height: 1.35;
}
.language-selector__option:hover {
  background: rgba(0, 0, 0, 0.06);
}
.language-selector__item.is-active .language-selector__option {
  background: rgba(0, 0, 0, 0.08);
}
.language-selector .language-text {
  display: inline-block;
}
.language-selector .dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  position: relative;
  top: -2px;
  transition: transform 0.3s ease;
}
.language-selector .dropdown-icon img {
  width: 7px;
  height: auto;
  display: block;
}
.language-selector:hover .dropdown-icon {
  transform: rotate(180deg);
}
.language-selector::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 74px;
}
.language-selector:hover .dropdown-icon, .language-selector:focus-within .dropdown-icon {
  transform: rotate(180deg);
}
.language-selector:hover .language-selector__menu, .language-selector:focus-within .language-selector__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(24px);
}
@media (max-width: 768px) {
  .language-selector {
    display: none;
  }
}

.header-email {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.header-email:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header-email {
    display: none;
  }
}

.header-right .whatsapp-button,
a.whatsapp-button,
.whatsapp-button {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  border-radius: 50% !important;
  background-color: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: background-color 0.3s ease !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  scale: 1 !important;
}
.header-right .whatsapp-button:hover,
a.whatsapp-button:hover,
.whatsapp-button:hover {
  background-color: #20B858 !important;
  width: 56px !important;
  height: 56px !important;
  transform: none !important;
  scale: 1 !important;
}
.header-right .whatsapp-button svg,
a.whatsapp-button svg,
.whatsapp-button svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  display: block !important;
  flex-shrink: 0 !important;
}
@media (max-width: 768px) {
  .header-right .whatsapp-button,
  a.whatsapp-button,
  .whatsapp-button {
    display: none !important;
  }
}

.header-right .phone-button,
a.phone-button,
.phone-button {
  padding: 0 16px !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  border-radius: 50px !important;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%) !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #000000 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  line-height: 1 !important;
  margin: 0 !important;
  vertical-align: middle !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}
.header-right .phone-button::after,
a.phone-button::after,
.phone-button::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #FEE5C0 0%, #F5CE9B 50%, #F8D5A5 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
.header-right .phone-button:hover,
a.phone-button:hover,
.phone-button:hover {
  color: #000000 !important;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%) !important;
  background-color: transparent !important;
  transform: none !important;
  opacity: 1 !important;
}
.header-right .phone-button:hover::after,
a.phone-button:hover::after,
.phone-button:hover::after {
  opacity: 1 !important;
}
.header-right .phone-button:active,
a.phone-button:active,
.phone-button:active {
  color: #000000 !important;
  background: linear-gradient(to right, #FCD9A4 0%, #F3C17B 50%, #F6C88B 100%) !important;
  background-color: transparent !important;
  transform: none !important;
}
.header-right .phone-button:active::after,
a.phone-button:active::after,
.phone-button:active::after {
  opacity: 0 !important;
}
.header-right .phone-button:visited, .header-right .phone-button:focus,
a.phone-button:visited,
a.phone-button:focus,
.phone-button:visited,
.phone-button:focus {
  color: #000000 !important;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%) !important;
  background-color: transparent !important;
}
@media (max-width: 768px) {
  .header-right .phone-button,
  a.phone-button,
  .phone-button {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    padding: 0 !important;
    font-size: 12px !important;
  }
}

/**
 * Hero Block Styles
 */
.hero-block {
  width: 100% !important;
  height: 110vh !important;
  height: 110svh !important;
  min-height: 110vh !important;
  min-height: 110svh !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  position: relative !important;
  overflow: visible;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-block {
    height: 110vh !important;
    height: 110svh !important;
    min-height: 110vh !important;
    min-height: 110svh !important;
    background-image: url("https://global-travelsolutions.com/wp-content/uploads/2026/03/1943_result-scaled.webp") !important;
  }
}
@media (max-width: 768px) {
  .hero-block {
    height: 110vh !important;
    height: 110svh !important;
    min-height: 110vh !important;
    min-height: 110svh !important;
    background-image: url("https://global-travelsolutions.com/wp-content/uploads/2026/03/Frame-2087325567_result.webp") !important;
  }
}

main#primary > section.hero-block {
  position: relative !important;
}

main#primary > section.hero-block > .hero-container {
  position: absolute !important;
  inset: 0 !important;
  min-height: 100% !important;
  height: 100% !important;
}

.hero-container {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100% !important;
  height: 100% !important;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .hero-container {
    gap: 20px;
    width: 100%;
    max-width: 944px;
    padding: 0 20px;
    min-height: 100% !important;
    height: 100% !important;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .hero-container {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
    min-height: 100svh;
    padding: 0 12px 0 20px;
    box-sizing: border-box;
  }
}

.hero-left {
  width: 724px;
  flex-shrink: 0;
  margin-top: 0;
  flex: 0 0 724px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: 180px;
  padding-bottom: 32px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .hero-left {
    padding-top: 150px;
  }
}
@media (max-width: 1024px) {
  .hero-left {
    width: auto;
    flex: 1 1 534px;
    max-width: 534px;
    padding-top: 220px;
  }
}
@media (max-width: 768px) {
  .hero-left {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    min-height: 100%;
    padding-top: 96px;
    padding-bottom: 0;
    align-self: stretch;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  flex: 1;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-content {
    min-height: 100%;
  }
}

.hero-content--no-features {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .hero-content--no-features {
    justify-content: flex-start;
  }
}

.hero-subtitle {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px 0;
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .single-service .hero-title,
  .page-template-page-limousine-service .hero-title,
  .page-template-page-city-to-city .hero-title {
    width: 100%;
    max-width: 100%;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}

.hero-description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 24px 0;
}
@media (max-width: 1024px) {
  .hero-description {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 14px;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0;
  position: relative;
}
.hero-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-features::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-features {
    display: none;
  }
}

.hero-features--mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero-features--mobile {
    display: grid;
    margin-top: 0;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .hero-features--mobile-in-hero {
    margin-top: auto;
    margin-bottom: 0;
    width: 100%;
    max-width: none;
    align-self: stretch;
  }
}
@media (max-width: 768px) {
  .hero-features--mobile .hero-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 10px;
  }
  .hero-features--mobile .hero-feature-top-left,
  .hero-features--mobile .hero-feature-top-right {
    padding-bottom: 16px;
    padding-top: 10px;
  }
  .hero-features--mobile .hero-feature-bottom-left,
  .hero-features--mobile .hero-feature-bottom-right {
    padding-top: 16px;
    padding-bottom: 10px;
  }
  .hero-features--mobile .hero-feature-bottom-left {
    padding-right: 4px;
  }
  .hero-features--mobile .hero-feature-map {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 10px;
  }
  .hero-features--mobile .hero-feature-map .world-map-image {
    padding: 0;
    margin-left: -2px;
  }
  .hero-features--mobile .hero-feature-map .world-map-image img {
    width: 86px;
    height: auto;
  }
  .hero-features--mobile .hero-feature-map .world-map-text {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  .hero-features--mobile .hero-feature-map .world-map-number {
    font-size: 27px;
  }
  .hero-features--mobile .hero-feature-map .world-map-label {
    font-size: 12px;
  }
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.hero-feature-top-left {
  grid-column: 1;
  grid-row: 1;
  padding-top: 6px;
  padding-bottom: 32px;
  justify-content: flex-start;
}

.hero-feature-top-right {
  grid-column: 2;
  grid-row: 1;
  display: block;
  padding: 0;
}

.hero-feature-bottom-left {
  grid-column: 1;
  grid-row: 2;
  padding-top: 32px;
  padding-bottom: 6px;
  justify-content: flex-start;
}

.hero-feature-bottom-right {
  grid-column: 2;
  grid-row: 2;
  padding-top: 32px;
  padding-bottom: 6px;
  padding-left: 24px;
  justify-content: flex-start;
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.hero-feature-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.hero-feature-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.hero-feature-text {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .hero-feature-text {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero-feature-text {
    font-size: 11px;
  }
}

.hero-right {
  width: 390px;
  flex-shrink: 0;
  flex: 0 0 390px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--site-header-height, 72px) + 16px);
  padding-bottom: 20px;
  box-sizing: border-box;
  min-height: 100%;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .hero-right {
    width: 390px;
    flex: 0 0 390px;
    margin-left: 0;
    padding-top: calc(var(--site-header-height, 72px) + 12px);
  }
}
@media (max-width: 768px) {
  .hero-right {
    width: 100%;
    flex: 0 0 auto;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    justify-content: flex-start;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero-right--desktop {
    display: none;
  }
}

.booking-form {
  width: 100%;
  background: #fff;
  padding: 24px 20px;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .booking-form {
    width: 100%;
  }
}

@media (max-height: 900px) and (min-width: 769px) {
  .booking-form {
    padding: 18px 16px;
  }
  .form-row {
    gap: 16px;
    margin-bottom: 18px;
  }
  .form-row.form-row-after-checkboxes,
  .form-row.form-row-dropoff-notes {
    margin-top: 18px;
    margin-bottom: 18px;
  }
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.form-row.form-row-after-checkboxes {
  margin-top: 32px;
  margin-bottom: 24px;
}
.form-row.form-row-dropoff-notes {
  margin-top: 24px;
  margin-bottom: 24px;
}

.form-checkboxes {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  margin-bottom: 0;
}
.form-group.form-group-with-add-stop {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-group.form-group-with-add-stop input {
  width: 100%;
}
.form-group.form-group-with-add-stop .add-stop-link {
  margin-top: 4px;
  align-self: flex-end;
}
.form-group input[type=text],
.form-group input[type=tel],
.form-group input[type=email],
.form-group input[type=datetime-local],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0;
  font-size: 14px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  background: transparent;
  color: #000000;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.form-group input[type=text]:focus,
.form-group input[type=tel]:focus,
.form-group input[type=email]:focus,
.form-group input[type=datetime-local]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: rgba(0, 0, 0, 0.32);
}
.form-group input[type=text]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=datetime-local]::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.56);
  opacity: 1;
}
.form-group input[type=datetime-local] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  color: transparent !important;
  position: relative;
  background: transparent !important;
  padding: 8px 0 !important;
}
.form-group input[type=datetime-local]::-webkit-calendar-picker-indicator {
  opacity: 1 !important;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25 !important;
}
.form-group input[type=datetime-local]::-webkit-datetime-edit {
  color: transparent !important;
  text-align: left;
  padding-left: 0;
}
.form-group input[type=datetime-local]::-webkit-datetime-edit-fields-wrapper {
  color: transparent !important;
}
.form-group input[type=datetime-local]::-webkit-datetime-edit-text {
  color: transparent !important;
}
.form-group input[type=datetime-local]::-webkit-datetime-edit-month-field, .form-group input[type=datetime-local]::-webkit-datetime-edit-day-field, .form-group input[type=datetime-local]::-webkit-datetime-edit-year-field, .form-group input[type=datetime-local]::-webkit-datetime-edit-hour-field, .form-group input[type=datetime-local]::-webkit-datetime-edit-minute-field {
  color: transparent !important;
}
.form-group input[type=datetime-local].has-value {
  color: #000000 !important;
}
.form-group input[type=datetime-local].has-value::-webkit-datetime-edit {
  color: #000000 !important;
}
.form-group input[type=datetime-local].has-value::-webkit-datetime-edit-fields-wrapper {
  color: #000000 !important;
}
.form-group input[type=datetime-local].has-value::-webkit-datetime-edit-text {
  color: #000000 !important;
}
.form-group input[type=datetime-local].has-value::-webkit-datetime-edit-month-field, .form-group input[type=datetime-local].has-value::-webkit-datetime-edit-day-field, .form-group input[type=datetime-local].has-value::-webkit-datetime-edit-year-field, .form-group input[type=datetime-local].has-value::-webkit-datetime-edit-hour-field, .form-group input[type=datetime-local].has-value::-webkit-datetime-edit-minute-field {
  color: #000000 !important;
}
.form-group input[type=datetime-local]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.56);
  opacity: 1;
}
.form-group.form-group-datetime {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}
.form-group.form-group-datetime .datetime-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.56) !important;
  font-size: 14px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  pointer-events: none !important;
  z-index: 30 !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease, display 0.3s ease, color 0.3s ease;
  display: block !important;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding-right: 20px;
  box-sizing: border-box;
}
.form-group.form-group-datetime input[type=datetime-local] {
  position: relative;
  z-index: 20 !important;
  background: transparent !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 8px 0 !important;
  padding-right: 25px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32) !important;
  outline: none !important;
  text-align: left !important;
}
.form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit {
  cursor: pointer !important;
  pointer-events: auto !important;
}
.form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-fields-wrapper {
  cursor: pointer !important;
  pointer-events: auto !important;
}
.form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-text {
  cursor: pointer !important;
  pointer-events: auto !important;
}
.form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-month-field, .form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-day-field, .form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-year-field, .form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-hour-field, .form-group.form-group-datetime input[type=datetime-local]::-webkit-datetime-edit-minute-field {
  cursor: pointer !important;
  pointer-events: auto !important;
}
.form-group.form-group-datetime input[type=datetime-local].has-value ~ .datetime-placeholder {
  opacity: 0 !important;
  display: none !important;
}
@media (max-width: 1024px) {
  .form-group.form-group-datetime input[type=datetime-local]:focus ~ .datetime-placeholder {
    opacity: 0 !important;
    display: none !important;
  }
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4'%3E%3Cpath d='M3.5 4L0 0h7z' fill='%23000' fill-opacity='0.56'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 7px 4px;
  padding-right: 20px;
  cursor: pointer;
  position: relative;
  transition: background-image 0.3s ease, color 0.3s ease;
  color: rgba(0, 0, 0, 0.56);
}
.form-group select:focus, .form-group select.selected {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4'%3E%3Cpath d='M3.5 4L0 0h7z' fill='%23000'/%3E%3C/svg%3E");
  color: #000000;
}
.form-group select option {
  color: #000000 !important;
}
.form-group select option[value=""] {
  color: rgba(0, 0, 0, 0.56) !important;
}
.form-group select option:checked {
  color: #000000 !important;
}
.form-group textarea {
  resize: none;
  height: auto;
  min-height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  padding: 8px 0;
  line-height: 1.5;
  overflow: hidden;
}

.add-stop-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(0, 0, 0, 0.56) !important;
  font-size: 14px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  margin-bottom: 8px;
}
.add-stop-link svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}
.add-stop-link:visited, .add-stop-link:focus, .add-stop-link:active {
  color: rgba(0, 0, 0, 0.56) !important;
  text-decoration: none;
}
.add-stop-link:hover {
  color: #000000 !important;
  text-decoration: none;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox-group label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0 !important;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: transparent;
}
.checkbox-group label input[type=checkbox]:checked {
  border-color: #000000;
  background: transparent;
}
.checkbox-group label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 10l3 3 7-7' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}
.checkbox-group label span {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.checkbox-consent {
  margin-top: 24px;
  margin-bottom: 24px;
}
.checkbox-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkbox-consent label input[type=checkbox].consent-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 0;
  margin-top: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0 !important;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: transparent;
}
.checkbox-consent label input[type=checkbox].consent-checkbox:checked {
  border-color: #000000;
  background: transparent;
}
.checkbox-consent label input[type=checkbox].consent-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: #000000;
  transform: translate(-50%, -50%);
}

.add-stop-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(0, 0, 0, 0.56) !important;
  font-size: 14px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.add-stop-link svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}
.add-stop-link:visited, .add-stop-link:focus, .add-stop-link:active {
  color: rgba(0, 0, 0, 0.56) !important;
  text-decoration: none;
}
.add-stop-link:hover {
  color: #000000 !important;
  text-decoration: none;
}

.booking-submit-btn {
  width: 153px;
  height: 56px;
  padding: 0;
  background: linear-gradient(to right, #FDDFAE 0%, #F4C58B 50%, #F7CE95 100%);
  color: #000000 !important;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-submit-btn:visited, .booking-submit-btn:link, .booking-submit-btn:focus, .booking-submit-btn:active {
  color: #000000 !important;
}
.booking-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.booking-submit-btn:hover {
  background: linear-gradient(to right, #FEE5C0 0%, #F5CE9B 50%, #F8D5A5 100%);
}
.booking-submit-btn:hover::before {
  left: 100%;
}
.booking-submit-btn:active {
  background: linear-gradient(to right, #FCD9A4 0%, #F3C17B 50%, #F6C88B 100%);
}

.world-map-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .world-map-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.world-map-image {
  flex-shrink: 0;
  padding: 14px 0 4px 32px;
  display: flex;
  align-items: flex-start;
}
.world-map-image img {
  width: 200px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .world-map-image {
    padding: 14px 0 14px 20px;
  }
  .world-map-image img {
    width: 180px;
  }
}

.world-map-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
  margin: 16px 0 16px 34px;
  align-self: stretch;
}

.world-map-text {
  flex: 1;
  color: #fff;
  padding: 14px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.world-map-label-top {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  opacity: 0.8;
  text-align: center;
}

.world-map-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.world-map-number {
  font-family: "Onest", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.world-map-label-bottom {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 0.8;
  text-align: center;
  line-height: 1;
}

/**
 * Booking Form Block Styles
 */
.booking-form-block {
  width: 100%;
  padding: 0;
  margin: 0;
}

.booking-form-block--mobile {
  display: none;
}
@media (max-width: 768px) {
  .booking-form-block--mobile {
    display: block;
    margin-top: 0;
    position: relative;
    z-index: 5;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .booking-form-container {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .booking-form-left {
    display: none;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .booking-form-right {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .booking-form {
    border-radius: 0;
    padding: 24px 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .world-map-section {
    margin-top: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .hero-features--mobile-in-form {
    order: 0;
    margin-bottom: 24px;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .booking-form-right .hero-features--mobile {
    order: 0;
    margin-top: 0;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .booking-form-block--mobile .booking-form-right .booking-form {
    order: 1;
    margin-top: 0;
  }
}

.booking-form-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .booking-form-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
}
@media (max-width: 375px) {
  .booking-form-container {
    gap: 20px;
    padding: 0 10px;
  }
}

.booking-form-left {
  width: 724px;
  flex-shrink: 0;
  margin-top: 130px;
}
@media (max-width: 1024px) {
  .booking-form-left {
    width: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 375px) {
  .booking-form-left {
    margin-top: 40px;
  }
}

.booking-form-right {
  width: 390px;
  flex-shrink: 0;
  margin-top: 106px;
}
@media (max-width: 1024px) {
  .booking-form-right {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 375px) {
  .booking-form-right {
    margin-top: 0;
  }
}

/**
 * Service Context Grid (single-service only)
 */
.single-service .service-context-block {
  width: 100%;
  margin-top: 68px;
  padding: 0;
}

.single-service .service-context-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .single-service .service-context-container {
    width: 100%;
    max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
    padding: 0 4px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .single-service .service-context-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
}

.single-service .service-context-heading {
  display: flex;
  align-items: center;
  gap: 84px;
  margin-bottom: 28px;
}

.single-service .service-context-heading-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-service .service-context-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

.single-service .service-context-subtitle {
  margin: 0;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  opacity: 0.9;
}

.single-service .service-context-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.single-service .service-context-card {
  min-height: 320px;
  border: 1px inset rgba(255, 255, 255, 0.16);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
  grid-column: var(--sc-col, auto)/span var(--sc-col-span, 1);
  grid-row: var(--sc-row, auto)/span var(--sc-row-span, 1);
}

.single-service .service-context-card--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.single-service .service-context-card--light {
  background: #ebebeb;
  border-color: rgba(255, 255, 255, 0.2);
}

.single-service .service-context-icon-badge {
  width: 66px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-service .service-context-icon-badge img {
  width: 24px;
  height: 24px;
}

.single-service .service-context-icon-badge--light {
  background: #f2d29a;
}

.single-service .service-context-icon-badge--light img {
  filter: brightness(0);
}

.single-service .service-context-text {
  margin: 0;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: #fff;
}

.single-service .service-context-card--light .service-context-text {
  color: #1f2430;
}

@media (max-width: 1280px) {
  .single-service .service-context-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row dense;
  }
  .single-service .service-context-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
  .single-service .service-context-card--wide {
    grid-column: span 2;
  }
}
@media (max-width: 1024px) {
  .single-service .service-context-title {
    font-size: 42px;
  }
  .single-service .service-context-card {
    min-height: 260px;
  }
  .single-service .service-context-heading {
    gap: 56px;
  }
}
@media (max-width: 768px) {
  .single-service .service-context-block {
    margin-top: 52px;
  }
  .single-service .service-context-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .single-service .service-context-heading-copy {
    gap: 10px;
  }
  .single-service .service-context-title {
    font-size: 32px;
  }
  .single-service .service-context-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    grid-auto-flow: row dense;
  }
  .single-service .service-context-card {
    min-height: 220px;
    grid-column: auto;
    grid-row: auto;
    padding: 16px;
  }
  .single-service .service-context-text {
    font-size: clamp(14px, 3.9vw, 16px);
    line-height: 1.35;
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: pretty;
  }
  .single-service .service-context-card--wide {
    grid-column: span 1;
  }
  .single-service .service-context-card--mobile-wide {
    grid-column: 1/-1;
  }
}
@media (max-width: 390px) {
  .single-service .service-context-card {
    padding: 14px;
    min-height: 204px;
  }
  .single-service .service-context-text {
    font-size: 15px;
    line-height: 1.3;
  }
}
/**
 * Why Us Block Styles
 */
.why-us-block {
  width: 100%;
  margin-top: 150px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  .why-us-block {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .why-us-block {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.page-template-page-city-to-city .why-us-block:not(.occasions-block) {
  margin-bottom: 92px;
}
@media (max-width: 1024px) {
  .page-template-page-city-to-city .why-us-block:not(.occasions-block) {
    margin-bottom: 69px;
  }
}
@media (max-width: 768px) {
  .page-template-page-city-to-city .why-us-block:not(.occasions-block) {
    margin-bottom: 115px;
  }
}

.why-us-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .why-us-container {
    width: 100%;
    max-width: 944px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .why-us-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
}

.why-us-heading {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .why-us-heading {
    gap: 16px;
  }
}

.why-us-heading-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.why-us-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  column-gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .why-us-intro {
    column-gap: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .why-us-intro {
    grid-template-columns: 1fr;
    row-gap: 14px;
    margin-bottom: 24px;
  }
}

.why-us-intro-title {
  margin: 0;
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (max-width: 1024px) {
  .why-us-intro-title {
    font-size: 33px;
  }
}
@media (max-width: 768px) {
  .why-us-intro-title {
    font-size: 26px;
  }
}

.why-us-intro-description {
  margin: 0;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  opacity: 0.92;
  text-align: left;
}
@media (max-width: 1024px) {
  .why-us-intro-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .why-us-intro-description {
    font-size: 16px;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 221px 221px 221px 221px;
    grid-template-rows: auto auto;
    gap: 20px;
  }
}

.why-us-item {
  padding: 24px;
  border: 1px inset rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 380px;
}
@media (max-width: 1024px) {
  .why-us-item {
    height: 284px;
  }
}

.why-us-item-1 {
  grid-column: 1/span 2;
  grid-row: 1;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-us-item-2 {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-us-item-3 {
  grid-column: 4;
  grid-row: 1;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-us-item-4 {
  grid-column: 1;
  grid-row: 2;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-us-item-5 {
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-us-item-6 {
  grid-column: 3/span 2;
  grid-row: 2;
  justify-content: flex-start;
  align-items: flex-start;
}

.why-us-item-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  margin: 0;
  flex-shrink: 0;
}

.why-us-item-icon {
  width: auto;
  height: auto;
  max-width: 26px;
  max-height: 26px;
  display: block;
}

.why-us-item-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 110%;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-align: left;
}
@media (max-width: 1024px) {
  .why-us-item-title {
    font-size: 20px;
  }
}

.why-us-item-description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 120%;
  letter-spacing: 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  text-align: left;
}
@media (max-width: 1024px) {
  .why-us-item-description {
    font-size: 14px;
  }
}

.why-us-item-2 .why-us-item-title,
.why-us-item-3 .why-us-item-title,
.why-us-item-4 .why-us-item-title,
.why-us-item-5 .why-us-item-title {
  margin-top: auto;
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 5px;
    grid-auto-flow: row;
  }
  .why-us-item {
    padding: 12px;
    height: 278px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .why-us-item-1 {
    grid-row: 1;
    grid-column: 1/-1;
  }
  .why-us-item-6 {
    grid-row: 4;
    grid-column: 1/-1;
  }
  .why-us-item-2 {
    grid-row: 2;
    grid-column: 1;
  }
  .why-us-item-3 {
    grid-row: 2;
    grid-column: 2;
  }
  .why-us-item-4 {
    grid-row: 3;
    grid-column: 1;
  }
  .why-us-item-5 {
    grid-row: 3;
    grid-column: 2;
  }
  .why-us-item-title {
    font-size: 18px;
    margin-top: auto;
    margin-bottom: 8px;
  }
  .why-us-item-description {
    font-size: 14px;
    margin-top: 0;
  }
  .why-us-item-title,
  .why-us-item-description {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .why-us-item-title {
    text-wrap: balance;
  }
  .why-us-item-description {
    text-wrap: pretty;
  }
  .single-service .why-us-item-6 .why-us-item-description,
  .page-template-page-limousine-service .why-us-item-6 .why-us-item-description,
  .page-template-page-city-to-city .why-us-item-6 .why-us-item-description {
    max-width: 250px;
  }
  .single-service .why-us-block--travel-personal-interpreter .why-us-item-1 .why-us-item-description {
    max-width: 250px;
  }
  .single-service .why-us-container,
  .page-template-page-limousine-service .why-us-container,
  .page-template-page-city-to-city .why-us-container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .single-service .why-us-grid,
  .page-template-page-limousine-service .why-us-grid,
  .page-template-page-city-to-city .why-us-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .single-service .why-us-item,
  .page-template-page-limousine-service .why-us-item,
  .page-template-page-city-to-city .why-us-item {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .single-service .why-us-item-title,
  .single-service .why-us-item-description,
  .page-template-page-limousine-service .why-us-item-title,
  .page-template-page-limousine-service .why-us-item-description,
  .page-template-page-city-to-city .why-us-item-title,
  .page-template-page-city-to-city .why-us-item-description {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
}
/**
 * Fleet Slider Block Styles
 */
.fleet-slider-block {
  width: 100%;
  max-width: 100vw;
  margin-top: 150px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  .fleet-slider-block {
    margin-top: 60px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .fleet-slider-block {
    margin-top: 80px;
    padding: 0;
  }
}

.fleet-slider-grid {
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .fleet-slider-grid {
    padding: 0 4px;
  }
}
@media (max-width: 768px) {
  .fleet-slider-grid {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
}

.fleet-slider-container {
  width: 100%;
  box-sizing: border-box;
}

/* Fleet heading uses .why-us-heading + .why-us-heading-line (same as Why us block) */
.fleet-slider-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.fleet-slider-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 760px;
}

.fleet-slider-lead {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 8px 0 0 0;
  opacity: 0.85;
  max-width: 320px;
}

.fleet-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  isolation: isolate;
}

.fleet-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
}

.fleet-slider .swiper-slide {
  z-index: 0;
}

.fleet-slider .swiper-wrapper {
  margin-left: 0;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  border: 1px inset rgba(255, 255, 255, 0.16);
  background: rgba(12, 15, 23, 0.82);
  box-sizing: border-box;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
}
.fleet-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: -1px;
}

.fleet-card-media {
  height: 250px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-card-image {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.fleet-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.fleet-card-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fleet-card-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.fleet-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fleet-card-meta-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.fleet-card-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.fleet-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  box-sizing: border-box;
}

.fleet-card-action.btn-secondary, .fleet-card-action.footer-button-secondary, .fleet-card-action.custom-itinerary-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.fleet-slider-wrapper .nav-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 4px;
  z-index: 100;
  display: flex !important;
  visibility: visible !important;
}

.fleet-slider-wrapper .nav-arrow {
  pointer-events: all;
  position: relative;
  z-index: 101;
  visibility: visible !important;
  display: flex !important;
  flex-shrink: 0;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.fleet-slider-wrapper .nav-arrow.fleet-slider-prev {
  transform: translateX(-30%);
}

.fleet-slider-wrapper .nav-arrow.fleet-slider-next {
  transform: translateX(30%);
}

.fleet-slider-footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.fleet-slider-all-link {
  display: inline-flex;
  align-items: center;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.fleet-slider-all-link:hover {
  opacity: 0.8;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.fleet-booking-modal,
.fleet-success-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fleet-booking-modal.is-open,
.fleet-success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.fleet-booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 23, 0.72);
  backdrop-filter: blur(6px);
}

.fleet-booking-dialog {
  position: relative;
  z-index: 2;
  width: min(520px, 92vw);
  max-height: min(90vh, 720px);
  background: rgba(12, 15, 23, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: fleetPop 0.35s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.fleet-booking-dialog * {
  pointer-events: auto;
}

.fleet-booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  text-align: center;
  text-indent: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  appearance: none;
  pointer-events: auto;
}

.fleet-booking-close::before {
  content: "×";
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 1;
  display: block;
  color: #fff;
  transform: translateY(-1px);
}

.fleet-booking-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #fff;
}

.fleet-booking-subtitle {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
}

.fleet-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.fleet-form-row {
  display: grid;
  gap: 8px;
  grid-column: 1/-1;
  min-width: 0;
}

.fleet-form-row label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.fleet-form-row input,
.fleet-form-row textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  caret-color: #fff;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.fleet-form-row input {
  height: 48px;
  min-height: 48px;
  line-height: 24px;
}

.fleet-booking-form input,
.fleet-booking-form textarea,
.fleet-booking-form select {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.fleet-booking-form input:focus,
.fleet-booking-form textarea:focus,
.fleet-booking-form select:focus {
  color: #ffffff !important;
}

.fleet-booking-form input:-webkit-autofill,
.fleet-booking-form textarea:-webkit-autofill,
.fleet-booking-form select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 0px 1000px rgba(12, 15, 23, 0.96) inset;
  transition: background-color 9999s ease-out 0s;
}

.fleet-form-row input::placeholder,
.fleet-form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.fleet-form-row input:placeholder-shown,
.fleet-form-row textarea:placeholder-shown {
  color: rgba(255, 255, 255, 0.4);
}

.fleet-form-row--datetime {
  position: relative;
}

.fleet-form-row--datetime input {
  padding: 12px 44px 12px 14px;
  -webkit-appearance: none;
  appearance: none;
}

.fleet-datetime-placeholder {
  position: absolute;
  left: 14px;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4) !important;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fleet-form-row--datetime input.has-value + .fleet-datetime-placeholder {
  opacity: 0;
}

.fleet-form-row--datetime input:not(.has-value) {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.fleet-form-row--datetime input[type=datetime-local]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.fleet-form-row--datetime::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.fleet-form-row--datetime input.has-value,
.fleet-form-row--datetime input[type=datetime-local]::-webkit-datetime-edit,
.fleet-form-row--datetime input[type=datetime-local]::-webkit-datetime-edit-fields-wrapper {
  text-align: left;
}

.fleet-form-row--full {
  grid-column: 1/-1;
}

.fleet-form-row--half {
  grid-column: auto;
}

.fleet-form-row textarea {
  min-height: 72px;
  max-height: 72px;
  resize: none;
}

.fleet-form-row input:focus,
.fleet-form-row textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.fleet-form-row input[type=number] {
  -moz-appearance: textfield;
}

.fleet-form-row input[type=number]::-webkit-outer-spin-button,
.fleet-form-row input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fleet-form-row input[type=datetime-local] {
  color-scheme: dark;
  color: #fff;
  width: 100%;
  appearance: none;
  text-align: left;
}

.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-fields-wrapper,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-text,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-month-field,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-day-field,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-year-field,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-hour-field,
.fleet-form-row input[type=datetime-local]::-webkit-datetime-edit-minute-field {
  color: #fff;
}

.fleet-form-submit {
  margin-top: 12px;
  grid-column: 1/-1;
}

.fleet-success-dialog {
  text-align: center;
}

.fleet-success-content {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.fleet-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 197, 138, 0.15);
  border: 1px solid rgba(37, 197, 138, 0.35);
  color: #25c58a;
  font-size: 34px;
}

.fleet-success-button {
  min-width: 160px;
}

@keyframes fleetPop {
  from {
    transform: translateY(20px) scale(0.98);
    opacity: 0.7;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .fleet-slider-title {
    font-size: 32px;
  }
  .fleet-slider-lead {
    font-size: 15px;
  }
  .fleet-card-media {
    height: 220px;
  }
  .fleet-slider-footer {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .fleet-slider-title-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .fleet-slider-title {
    font-size: 24px;
    max-width: 100%;
  }
  .fleet-slider-lead {
    font-size: 16px;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }
  .fleet-slider-wrapper .nav-arrows {
    padding: 0;
  }
  .fleet-slider-all-link {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .fleet-booking-form {
    grid-template-columns: 1fr;
  }
  .fleet-form-row--half {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .fleet-booking-dialog {
    padding: 20px;
    border-radius: 24px;
  }
  .fleet-booking-close {
    width: 40px;
    height: 40px;
    top: 14px;
    right: 14px;
  }
  .fleet-booking-close::before {
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  .fleet-booking-form {
    grid-template-columns: 1fr;
  }
  .fleet-form-row--half {
    grid-column: 1/-1;
  }
}
/**
 * Occasions Block Styles
 * Uses why-us structure and styles. Only occasions-specific overrides.
 */
.occasions-block.why-us-block {
  margin-top: 90px;
}
@media (max-width: 1440px) {
  .occasions-block.why-us-block {
    margin-top: 150px;
  }
}
@media (max-width: 1024px) {
  .occasions-block.why-us-block {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  .occasions-block.why-us-block {
    margin-top: 100px;
  }
}

.occasions-block .why-us-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .occasions-block .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
}

.occasions-block .why-us-item.why-us-item-1 {
  grid-column: 1/span 2;
  grid-row: 1;
  justify-content: flex-start;
  align-items: flex-start;
}
.occasions-block .why-us-item.why-us-item-1 .why-us-item-icon-wrapper {
  flex-shrink: 0;
}
.occasions-block .why-us-item.why-us-item-1 .why-us-item-title {
  margin-top: auto;
}

.occasions-block .why-us-item.why-us-item-2 {
  grid-column: 3;
  grid-row: 1;
  border: 1px solid rgba(12, 15, 23, 0.15);
  background: #fff;
  justify-content: flex-start;
  align-items: flex-start;
}
.occasions-block .why-us-item.why-us-item-2 .why-us-item-icon-wrapper {
  flex-shrink: 0;
  background: #fcdcaa;
  box-shadow: none;
  border: none;
}
.occasions-block .why-us-item.why-us-item-2 .why-us-item-title {
  margin-top: auto;
  color: #0c0f17;
}
.occasions-block .why-us-item.why-us-item-2 .why-us-item-description {
  color: #0c0f17;
}

.occasions-block .occasions-item-image {
  grid-column: 4;
  grid-row: 1;
  border: none;
}

.occasions-block .why-us-item-3 {
  grid-column: 2;
  grid-row: 2;
}

.occasions-block .why-us-item-4 {
  grid-column: 3/span 2;
  grid-row: 2;
}

.occasions-block .occasions-row3-image {
  grid-column: 1;
  grid-row: 3;
  height: 380px;
  min-height: 380px;
}
@media (max-width: 1024px) {
  .occasions-block .occasions-row3-image {
    height: 284px;
    min-height: 284px;
  }
}
@media (max-width: 768px) {
  .occasions-block .occasions-row3-image {
    height: 278px;
    min-height: 278px;
  }
}

.occasions-block .occasions-row3-card {
  grid-column: 2;
  grid-row: 3;
  height: 380px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: flex-start;
  border: none;
  background: #fff;
}
.occasions-block .occasions-row3-card .why-us-item-icon-wrapper {
  flex-shrink: 0;
  background: #fcdcaa;
  box-shadow: none;
  border: none;
}
.occasions-block .occasions-row3-card .why-us-item-title {
  margin-top: auto;
  color: #0c0f17;
}
.occasions-block .occasions-row3-card .why-us-item-description {
  color: #0c0f17;
}
@media (max-width: 1024px) {
  .occasions-block .occasions-row3-card {
    height: 284px;
  }
}
@media (max-width: 768px) {
  .occasions-block .occasions-row3-card {
    height: 278px;
    min-height: 278px;
  }
}

.occasions-block .why-us-item-6 {
  grid-column: 3/span 2;
  grid-row: 3;
}

.occasions-block .why-us-item:not([style*=background-image]):not(.why-us-item-2):not(.occasions-footer-item) {
  background: transparent;
  border: 1px inset rgba(255, 255, 255, 0.16);
}

.occasions-block .why-us-item[style*=background-image] {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.occasions-block .why-us-item.occasions-footer-item {
  border: none;
}

.occasions-item-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .occasions-item-split {
    height: 284px;
  }
}
@media (max-width: 768px) {
  .occasions-item-split {
    grid-template-columns: 1fr;
    grid-template-rows: 278px 278px;
    height: auto;
  }
}

.occasions-split-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 140px;
}
@media (max-width: 768px) {
  .occasions-split-image {
    min-height: 278px;
    height: 278px;
  }
}

.occasions-split-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .occasions-split-card {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .occasions-split-card {
    min-height: 278px;
  }
}

.occasions-block .occasions-split-card--light.occasions-row3-card {
  background: #fff;
}

.occasions-card-title--dark {
  color: #0c0f17 !important;
}

.occasions-card-description--dark {
  color: rgba(12, 15, 23, 0.85) !important;
  opacity: 1 !important;
}

.occasions-block .why-us-item-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  margin: 0;
  flex-shrink: 0;
}

.occasions-block .why-us-item-icon {
  width: auto;
  height: auto;
  max-width: 26px;
  max-height: 26px;
  display: block;
}

.occasions-block .why-us-heading .why-us-heading-line {
  display: none;
}

.occasions-block .why-us-heading .occasions-footer-text-mobile {
  display: none;
}

.occasions-block .why-us-heading .occasions-title-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .occasions-block .why-us-heading .occasions-title-wrapper {
    justify-content: flex-start;
    padding: 0;
  }
}
.occasions-block .why-us-heading .occasions-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (max-width: 1024px) {
  .occasions-block .why-us-heading .occasions-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .occasions-block .why-us-heading .occasions-title {
    font-size: 28px;
    text-align: left;
  }
}

.occasions-footer-item {
  align-items: flex-end;
  justify-content: flex-end;
}

.occasions-footer-text {
  text-align: right;
  max-width: 420px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .occasions-footer-text {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .occasions-footer-text {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
  }
}

.occasions-footer-text--hidden {
  visibility: hidden;
}

@media (max-width: 768px) {
  .occasions-block .why-us-heading {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px !important;
    padding-bottom: 0;
  }
  .occasions-block .why-us-heading .why-us-heading-line {
    display: block;
    flex: 1;
    min-height: 1px;
  }
  .occasions-block .why-us-heading .occasions-title-wrapper {
    flex-basis: 100%;
    order: 2;
  }
  .occasions-block .why-us-heading .occasions-footer-text-mobile {
    display: block;
    flex-basis: 100%;
    order: 3;
    margin-top: 0.5em;
    margin-bottom: 0;
  }
  .occasions-block .why-us-heading .occasions-footer-text-mobile.occasions-footer-text--hidden {
    display: none !important;
  }
  .occasions-block .why-us-item-6.occasions-footer-item {
    display: none;
  }
  .occasions-block .why-us-item-1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .occasions-block .why-us-item-1 .why-us-item-title {
    display: block !important;
    margin-top: auto;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
  }
  .occasions-block .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 5px;
    grid-auto-flow: row;
    margin-top: 32px !important;
  }
  .occasions-block .why-us-item-1 {
    grid-column: 1/-1 !important;
    grid-row: 1 !important;
  }
  .occasions-block .why-us-item.why-us-item-2 {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  .occasions-block .occasions-item-image {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }
  .occasions-block .why-us-item-3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }
  .occasions-block .why-us-item-4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }
  .occasions-block .occasions-row3-image {
    grid-column: 1 !important;
    grid-row: 4 !important;
  }
  .occasions-block .occasions-row3-card {
    grid-column: 2 !important;
    grid-row: 4 !important;
  }
  .occasions-block .why-us-item-6 {
    grid-column: 1/-1 !important;
    grid-row: 5 !important;
  }
  .occasions-block .why-us-item {
    height: auto;
    min-height: 278px;
  }
  .occasions-block .why-us-item.why-us-item-2,
  .occasions-block .why-us-item-1,
  .occasions-block .why-us-item-3,
  .occasions-block .why-us-item-4,
  .occasions-block .occasions-row3-card {
    min-height: 310px;
  }
  .occasions-block .occasions-item-image,
  .occasions-block .occasions-row3-image {
    height: auto;
    min-height: 310px;
  }
  .occasions-block .why-us-item.why-us-item-2 .why-us-item-title,
  .occasions-block .why-us-item-3 .why-us-item-title,
  .occasions-block .why-us-item-4 .why-us-item-title,
  .occasions-block .occasions-row3-card .why-us-item-title {
    margin-top: auto;
    margin-bottom: 8px;
  }
  .occasions-block .why-us-item.why-us-item-2 .why-us-item-title br + br {
    display: none;
  }
  .occasions-block .why-us-item-1 .why-us-item-title {
    display: block !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 12px !important;
    position: relative;
    z-index: 3;
  }
  .occasions-block .why-us-item .why-us-item-description {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: pretty;
  }
}
/**
 * How It Works Block Styles
 */
.how-it-works-block {
  width: 100%;
  height: var(--gts-vh, 100vh);
  margin-top: 150px;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.how-it-works-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0;
}

.how-it-works-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .how-it-works-title {
    font-size: 20px;
  }
}

.how-it-works-right {
  position: relative;
  width: 590px;
  flex-shrink: 0;
  margin-left: auto;
  padding-right: 100px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .how-it-works-right {
    width: 450px;
    padding-right: 60px;
  }
}
@media (max-width: 1024px) {
  .how-it-works-right {
    width: 410px;
    padding-right: 20px;
  }
}

.how-it-works-steps {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: hidden;
  overflow-x: hidden;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.how-it-works-steps::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.how-it-works-step {
  background: #fff;
  border: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 320px;
  min-height: 320px;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .how-it-works-step {
    height: 269px;
    min-height: 269px;
  }
}

.how-it-works-step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.how-it-works-step-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #0C0F17;
  margin: 0;
}
@media (max-width: 1024px) {
  .how-it-works-step-title {
    font-size: 20px;
  }
}

.how-it-works-step-description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: #0C0F17;
  margin: 0;
}

.how-it-works-step-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.how-it-works-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 38px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(12, 15, 23, 0.16);
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #0C0F17;
}

.how-it-works-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 38px;
  border-radius: 999px;
  background: #fcdcaa;
  margin-left: -15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-step-icon img {
  width: 26px;
  height: 26px;
  display: block;
}

@media (max-width: 768px) {
  .pin-spacer {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .how-it-works-block {
    height: auto !important;
    min-height: auto !important;
    margin-top: 0;
    background-image: none !important;
    background-color: transparent;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
    display: flex;
    flex-direction: column;
  }
  .how-it-works-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box !important;
  }
  .how-it-works-container::after {
    content: "";
    display: block;
    width: 100%;
    height: 420px;
    background-image: url("https://global-travelsolutions.com/wp-content/uploads/2026/01/banner-home-375-4_result.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    order: 2;
    margin: 0;
  }
  .how-it-works-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 20px 32px 20px;
    gap: 16px;
    order: 1;
    position: relative;
    z-index: 1;
  }
  .how-it-works-title {
    width: 100%;
    max-width: 100%;
  }
  .how-it-works-right {
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
    margin-top: 0;
    height: auto;
    background: transparent;
    box-sizing: border-box;
    order: 3;
    position: relative;
    z-index: 1;
  }
  .how-it-works-steps {
    height: auto;
    overflow: visible;
    gap: 10px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .how-it-works-step {
    height: 200px;
    min-height: 200px;
    padding: 16px;
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  .how-it-works-step-title {
    font-size: 18px;
  }
  .how-it-works-step-description {
    font-size: 14px;
  }
}
/**
 * Trusted By Block Styles
 */
.trusted-by-block {
  width: 100%;
  padding: 80px 0 0 0;
  overflow: visible;
}

.trusted-by-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: visible;
}

.trusted-by-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 32px 0 0 0;
  max-width: 920px;
}
@media (max-width: 1024px) {
  .trusted-by-title {
    font-size: 33px;
  }
}
@media (max-width: 768px) {
  .trusted-by-title {
    font-size: 28px;
  }
}

.trusted-by-slider {
  width: 100%;
  max-width: 100%;
  margin: 80px auto 0;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.trusted-by-slider .swiper-wrapper {
  align-items: stretch;
}

.trusted-by-slider.trusted-by-slider--fallback {
  overflow: visible;
}

.trusted-by-slider.trusted-by-slider--fallback .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  transform: none !important;
}

.trusted-by-slider.trusted-by-slider--fallback .trusted-by-card.swiper-slide {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
}

.trusted-by-card.swiper-slide {
  background: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 40px;
  box-sizing: border-box;
  text-align: left;
  display: flex !important;
  flex-direction: column !important;
  height: auto;
}

.trusted-by-card-content {
  flex: 0 0 auto;
}

.trusted-by-stars {
  display: flex;
  gap: 3px;
}

.trusted-by-star {
  font-size: 16px;
  line-height: 1;
  color: #0c0f17;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trusted-by-card-text {
  margin: 32px 0 0 0;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
}

.trusted-by-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto !important;
}

.trusted-by-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.trusted-by-avatar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0c0f17;
}
.trusted-by-avatar-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.trusted-by-name {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #000;
}

.trusted-by-container .nav-arrows {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .trusted-by-container .nav-arrows {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .trusted-by-container .nav-arrows {
    margin-top: 0 !important;
    margin-bottom: 40px;
  }
}

.trusted-by-block .nav-arrow {
  border: none;
  background: #f5f5f5;
}

.trusted-by-block .nav-arrow:hover {
  background: #ededed;
}

.trusted-by-block .nav-arrow:disabled,
.trusted-by-block .nav-arrow.swiper-button-disabled {
  background: #e2e2e2;
}

.trusted-by-container:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .trusted-by-container:last-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .trusted-by-block {
    margin-top: 50px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .trusted-by-container {
    margin-bottom: 0 !important;
    padding: 40px 20px 0 20px !important;
    margin-top: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .trusted-by-container:last-of-type {
    height: auto !important;
    min-height: 0 !important;
    padding: 40px 0 0 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .trusted-by-slider .swiper-slide {
    width: 100% !important;
  }
  .trusted-by-slider {
    margin-bottom: 0;
  }
  .trusted-by-slider.trusted-by-slider--fallback .swiper-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trusted-by-card.swiper-slide:nth-child(1) {
    min-height: 270px;
    height: 270px;
  }
  .trusted-by-card.swiper-slide:nth-child(2) {
    min-height: 346px;
    height: 346px;
  }
  .trusted-by-card.swiper-slide:nth-child(3) {
    min-height: 289px;
    height: 289px;
  }
}
/**
 * Services Block Styles
 */
.services-block {
  width: 100%;
  padding: 150px 0 80px 0;
}
@media (max-width: 1024px) {
  .services-block {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .services-block {
    padding-top: 90px;
  }
}

@media (max-width: 768px) {
  .home .services-block {
    padding-bottom: 0;
  }
}

.services-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 1024px) {
  .services-container {
    max-width: 944px !important;
    padding: 0 20px !important;
    box-sizing: content-box !important;
    width: 100% !important;
    margin: 0 auto !important;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .services-container {
    padding: 0 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

.services-title {
  margin: 32px 0 0 0;
}
@media (max-width: 1024px) {
  .services-title {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .services-title {
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 80px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .services-grid {
    gap: 20px 14px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.services-card {
  display: flex;
  gap: 20px;
  background: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  overflow: hidden;
  align-items: stretch;
  min-height: 335px;
  height: auto;
}
@media (max-width: 1024px) {
  .services-card {
    gap: 0;
    min-height: 335px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .services-card {
    min-height: 278px;
    height: auto;
  }
}

.services-card--clickable {
  cursor: pointer;
}

.services-card--hidden {
  display: none;
}

.services-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  justify-content: space-between;
  min-width: 0;
}
@media (max-width: 1024px) {
  .services-card-content {
    padding: 20px;
    flex: 1 1 auto;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .services-card-content {
    justify-content: flex-start;
  }
}

.services-card-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}
@media (max-width: 1024px) {
  .services-card-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .services-card-title {
    font-size: 18px;
  }
}

.services-card-description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  margin: 12px 0 16px 0;
}
@media (max-width: 1024px) {
  .services-card-description {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .services-card-description {
    font-size: 12px;
    margin-top: auto;
    margin-bottom: 8px;
  }
}

.services-card-link {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
@media (max-width: 1024px) {
  .services-card-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services-card-link {
    font-size: 12px;
  }
}

.services-card-link:hover {
  opacity: 0.7;
  text-decoration-color: rgba(0, 0, 0, 0.5);
}

.services-card-image {
  flex: 0 0 50%;
  overflow: hidden;
  display: block;
  height: 100%;
}
@media (max-width: 1024px) {
  .services-card-image {
    flex: 0 0 175px;
    width: 175px;
  }
}

.services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-show-more {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 40px;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.services-show-more:hover {
  opacity: 0.7;
  text-decoration-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .services-show-more {
    font-size: 12px;
  }
}
.services-block--limousine {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .services-block--limousine {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .services-block--limousine {
    padding-top: 0;
  }
}

.service-bottom-text {
  background: #ffffff;
  padding: 0 0 96px;
}
@media (max-width: 1024px) {
  .service-bottom-text {
    padding-bottom: 72px;
  }
}
@media (max-width: 768px) {
  .service-bottom-text {
    padding-bottom: 56px;
  }
}

.service-bottom-text__container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .service-bottom-text__container {
    padding: 0 20px;
    box-sizing: content-box;
  }
}

.service-bottom-text__title,
.service-bottom-text__description,
.service-bottom-text__link,
.service-bottom-text__toggle {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.56);
}

.service-bottom-text__title {
  margin: 0 0 24px;
}

.service-bottom-text__description {
  margin: 0 0 40px;
  max-width: 100%;
}

.service-bottom-text__link {
  display: inline-block;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-bottom-text__toggle {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .service-bottom-text__title,
  .service-bottom-text__description,
  .service-bottom-text__link,
  .service-bottom-text__toggle {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .service-bottom-text {
    padding-bottom: 40px;
  }
  .service-bottom-text__title,
  .service-bottom-text__description,
  .service-bottom-text__link,
  .service-bottom-text__toggle {
    font-size: 14px;
  }
  .service-bottom-text__description {
    margin-bottom: 24px;
  }
}
/**
 * Custom Itinerary Block Styles
 */
.custom-itinerary-block {
  width: 100%;
  margin-top: 80px;
  padding: 0 20px 40px;
}
@media (max-width: 1440px) {
  .custom-itinerary-block {
    margin-top: 80px;
  }
}
@media (max-width: 1024px) {
  .custom-itinerary-block {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .custom-itinerary-block {
    margin-top: 40px;
    padding-bottom: 10px;
  }
}

.custom-itinerary-block--limousine {
  margin-bottom: 150px;
}
@media (max-width: 1440px) {
  .custom-itinerary-block--limousine {
    margin-bottom: 150px;
  }
}
@media (max-width: 1024px) {
  .custom-itinerary-block--limousine {
    margin-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .custom-itinerary-block--limousine {
    margin-bottom: 100px;
  }
}

.custom-itinerary-container {
  position: relative;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  min-height: 208px;
  height: auto;
  margin: 0 auto;
  padding: 24px;
  background: #fcdcaa;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .custom-itinerary-container {
    padding: 24px 20px 30px;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}

.custom-itinerary-block--limousine .custom-itinerary-container {
  height: auto;
  min-height: 208px;
  padding-bottom: 36px;
}
@media (max-width: 768px) {
  .custom-itinerary-block--limousine .custom-itinerary-container {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 32px;
  }
}

.custom-itinerary-block--limousine .custom-itinerary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .custom-itinerary-block--limousine .custom-itinerary-actions {
    margin-top: 20px;
  }
}

.custom-itinerary-block--limousine .custom-itinerary-contact-label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #000;
}

.custom-itinerary-block--limousine .custom-itinerary-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-itinerary-block--limousine .custom-itinerary-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.custom-itinerary-block--limousine .custom-itinerary-icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.custom-itinerary-block--limousine .custom-itinerary-icon--phone {
  background: #25d366;
}
.custom-itinerary-block--limousine .custom-itinerary-icon--mail {
  background: #4997f6;
}

.custom-itinerary-block--limousine .custom-itinerary-button {
  margin-top: 0;
}
@media (max-width: 768px) {
  .custom-itinerary-block--limousine .custom-itinerary-button {
    width: auto;
    min-width: 0;
    padding: 0 20px;
  }
}

.custom-itinerary-block:not(.custom-itinerary-block--limousine) .custom-itinerary-button {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .custom-itinerary-block:not(.custom-itinerary-block--limousine) .custom-itinerary-button {
    margin-top: 16px;
  }
}

.custom-itinerary-block--limousine .custom-itinerary-line--top-left,
.custom-itinerary-block--limousine .custom-itinerary-line--top-right {
  width: 20%;
}

.custom-itinerary-block--limousine .custom-itinerary-line--bottom-left,
.custom-itinerary-block--limousine .custom-itinerary-line--bottom-right {
  width: 25%;
}

@media (max-width: 768px) {
  .custom-itinerary-block--limousine .custom-itinerary-line {
    display: none !important;
  }
}
.custom-itinerary-block--limousine .custom-itinerary-icon {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.custom-itinerary-block--limousine .custom-itinerary-icon:hover {
  opacity: 0.9;
  transform: scale(1.08);
}
.custom-itinerary-block--limousine .custom-itinerary-icon:active {
  transform: scale(1.02);
}

.custom-itinerary-block--limousine .custom-itinerary-description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #000;
}

.custom-itinerary-line {
  position: absolute;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.custom-itinerary-line--top-left {
  top: 48px;
  left: 0;
  width: 370px;
}
@media (max-width: 1024px) {
  .custom-itinerary-line--top-left {
    width: 222px;
  }
}
@media (max-width: 768px) {
  .custom-itinerary-line--top-left {
    display: none;
  }
}

.custom-itinerary-line--top-right {
  top: 48px;
  right: 0;
  width: 370px;
}
@media (max-width: 1024px) {
  .custom-itinerary-line--top-right {
    width: 222px;
  }
}
@media (max-width: 768px) {
  .custom-itinerary-line--top-right {
    display: none;
  }
}

.custom-itinerary-line--bottom-left {
  bottom: 48px;
  left: 0;
  width: 461px;
}
@media (max-width: 1024px) {
  .custom-itinerary-line--bottom-left {
    width: 262px;
  }
}
@media (max-width: 768px) {
  .custom-itinerary-line--bottom-left {
    width: 50px;
  }
}

.custom-itinerary-line--bottom-right {
  bottom: 48px;
  right: 0;
  width: 461px;
}
@media (max-width: 1024px) {
  .custom-itinerary-line--bottom-right {
    width: 262px;
  }
}
@media (max-width: 768px) {
  .custom-itinerary-line--bottom-right {
    width: 50px;
  }
}

/**
 * Final CTA Block Styles
 */
.final-cta-block {
  width: 100%;
  min-height: 890px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .final-cta-block {
    min-height: 890px;
    background-image: url("https://global-travelsolutions.com/wp-content/uploads/2026/01/home-last-1024_result.webp") !important;
  }
}
@media (max-width: 768px) {
  .final-cta-block {
    min-height: 527px !important;
    background-image: url("https://global-travelsolutions.com/wp-content/uploads/2026/01/last-banner-375-new.png") !important;
    padding: 0;
    margin-top: 80px;
    align-items: flex-start;
  }
}

.final-cta-container {
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width) - 40px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .final-cta-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
  }
}

.final-cta-left {
  width: 910px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .final-cta-left {
    width: 384px;
  }
}
@media (max-width: 768px) {
  .final-cta-left {
    width: 100%;
    padding-top: 10px;
  }
}

.final-cta-right-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .final-cta-right-wrapper {
    display: block;
    width: 100%;
    margin-top: -100px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .final-cta-right--desktop {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

.final-cta-right--mobile {
  display: none;
}
@media (max-width: 768px) {
  .final-cta-right--mobile {
    display: block;
  }
}

.final-cta-right {
  width: 910px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(100px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .final-cta-right {
    width: 485px;
    max-height: none;
  }
}
@media (max-width: 768px) {
  .final-cta-right {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(100px);
  }
}

.final-cta-item {
  width: 606px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.final-cta-item:first-child {
  padding-top: 0;
}
.final-cta-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 1024px) {
  .final-cta-item {
    width: 100%;
  }
}

.final-cta-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.final-cta-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.final-cta-item-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1024px) {
  .final-cta-item-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .final-cta-item-title {
    font-size: 18px;
  }
}

.final-cta-item-description {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1024px) {
  .final-cta-item-description {
    font-size: 14px;
  }
}

.final-cta-item-description-extra {
  margin-top: 16px;
}

.final-cta-block--service {
  min-height: auto;
  background-image: none !important;
  padding: 64px 0 0;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .final-cta-block--service {
    min-height: auto;
    background-image: none !important;
    padding: 56px 0 0;
  }
}
@media (max-width: 768px) {
  .final-cta-block--service {
    min-height: auto !important;
    background-image: none !important;
    margin-top: 0;
    padding: 40px 0 0;
  }
}

.final-cta-container--service {
  align-items: flex-start;
  width: 100%;
  max-width: min(1840px, 100vw - var(--scrollbar-width, 0px) - 40px);
  margin: 0 auto;
  padding: 16px 20px 0;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .final-cta-container--service {
    max-width: 944px;
    padding: 12px 20px 0;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .final-cta-container--service {
    max-width: 100%;
    padding: 12px 20px 0;
    box-sizing: border-box;
  }
}

.final-cta-left--service {
  width: 649px;
  padding-top: 28px;
}
.final-cta-left--service .final-cta-title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.final-cta-left--service .final-cta-description {
  font-size: 16px;
  line-height: 1.45;
  max-width: 100%;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .final-cta-left--service {
    width: 460px;
    padding-top: 24px;
  }
  .final-cta-left--service .final-cta-title {
    font-size: 33px;
    margin-bottom: 24px;
  }
  .final-cta-left--service .final-cta-description {
    font-size: 16px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .final-cta-left--service {
    width: 100%;
    padding-top: 20px;
    margin-bottom: 28px;
  }
  .final-cta-left--service .final-cta-title {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .final-cta-left--service .final-cta-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.final-cta-service-pill {
  margin-bottom: 40px;
}

.final-cta-right--service {
  width: 670px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.final-cta-right--service .final-cta-item {
  width: 100%;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.final-cta-right--service .final-cta-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 768px) {
  .final-cta-right--service {
    display: flex !important;
    width: 100%;
    background: transparent;
    padding: 0;
  }
  .final-cta-right--service .final-cta-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .final-cta-right--desktop.final-cta-right--service {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/**
 * Book a Transfer Page
 * Template: page-book-a-transfer.php
 * Grid and breakpoints aligned with header and hero (front page).
 */
.page-template-page-book-a-transfer .site-main {
  overflow: visible;
}

.transfer-page {
  background: #0C0F17;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.transfer-container {
  max-width: min(1840px, 100vw - var(--scrollbar-width, 0px) - 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: visible;
}
@media (max-width: 1024px) {
  .transfer-container {
    max-width: 944px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 768px) {
  .transfer-container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.transfer-header {
  display: grid;
  grid-template-columns: calc((100% - 20px) * 0.671641791) 20px calc((100% - 20px) * 0.328358209);
  align-items: start;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .transfer-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.transfer-title {
  grid-column: 1;
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .transfer-title {
    grid-column: auto;
  }
}

.transfer-subtitle {
  grid-column: 3;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .transfer-subtitle {
    grid-column: auto;
  }
}

.transfer-layout {
  display: grid;
  grid-template-columns: calc((100% - 20px) * 0.671641791) 20px calc((100% - 20px) * 0.328358209);
  align-items: start;
  gap: 0;
}
@media (max-width: 1024px) {
  .transfer-layout {
    grid-template-columns: 1fr;
  }
}

.transfer-form-card {
  grid-column: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  min-width: 0;
}

.transfer-section {
  margin-bottom: 40px;
}
.transfer-section:last-child {
  margin-bottom: 0;
}

.transfer-section-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.transfer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}
.transfer-row.location {
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  column-gap: 5px;
  row-gap: 20px;
  align-items: end;
}

.transfer-swap-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transfer-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  position: relative;
}

.transfer-autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #1a1d26;
  border: 1px solid rgba(255, 255, 255, 0.16);
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.transfer-autocomplete-item {
  margin: 0;
  padding: 0;
}

.transfer-autocomplete-option {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 8px 12px;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  cursor: pointer;
}
.transfer-autocomplete-option:hover, .transfer-autocomplete-option.is-active {
  background: rgba(255, 255, 255, 0.1);
}
.transfer-autocomplete-option:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: -1px;
}

.transfer-label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

/* Override inline color (e.g. rgb(0,0,0)): placeholder state = gray, selected = white */
.transfer-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/svg+xml,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%228%22 viewBox=%220 0 12 8%22%3e%3cpath d=%22M1 1.5L6 6.5L11 1.5%22 stroke=%22rgba%28255%2c255%2c255%2c0.5%29%22 stroke-width=%221.5%22 fill=%22none%22/%3e%3c/svg%3e);
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
}
.transfer-select option {
  background: #1a1d26;
  color: #fff;
}
.transfer-select option:checked {
  background: #232734;
  color: #fff;
}
.transfer-select:valid, .transfer-select.has-value {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.transfer-input,
.transfer-select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 10px 0;
  border: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 0;
  background: transparent;
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.transfer-input::placeholder,
.transfer-select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.transfer-input:focus,
.transfer-select:focus {
  border-bottom-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.transfer-input.has-value,
.transfer-select.has-value {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Keep white text in browser autofill states on dark form */
.transfer-input:-webkit-autofill,
.transfer-input:-webkit-autofill:hover,
.transfer-input:-webkit-autofill:focus,
.transfer-select:-webkit-autofill,
.transfer-select:-webkit-autofill:hover,
.transfer-select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-out 0s;
}

/* Date & time: hide icon, full area opens picker, placeholder color when empty */
.transfer-input[type=date],
.transfer-input[type=time] {
  position: relative;
  color: rgba(255, 255, 255, 0.5) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
}
.transfer-input[type=date]::-webkit-calendar-picker-indicator,
.transfer-input[type=time]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.transfer-input[type=date]::-webkit-datetime-edit,
.transfer-input[type=time]::-webkit-datetime-edit {
  color: rgba(255, 255, 255, 0.5);
}
.transfer-input[type=date].has-value,
.transfer-input[type=time].has-value {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.transfer-input[type=date].has-value::-webkit-datetime-edit,
.transfer-input[type=time].has-value::-webkit-datetime-edit {
  color: #fff;
}

/* Firefox: hide native date/time icon (limited support) */
.transfer-input[type=date]::-moz-focus-inner,
.transfer-input[type=time]::-moz-focus-inner {
  border: 0;
}

.swap-btn {
  width: 30px;
  height: 16px;
  min-width: 30px;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  background-image: url("https://global-travelsolutions.com/wp-content/uploads/2026/02/swap.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin: 0;
}
.swap-btn:hover {
  opacity: 0.9;
}

.transfer-return-label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

/* Consent before checkbox so .transfer-consent input comes before .transfer-checkbox input:checked (no-descending-specificity) */
.transfer-consent {
  margin-bottom: 24px;
}
.transfer-consent label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.transfer-consent input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.transfer-consent input[type=checkbox]:checked {
  border-color: #000;
  background: transparent;
}
.transfer-consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: #000;
  transform: translate(-50%, -50%);
}
.transfer-consent span {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: #0c0f17;
  line-height: 1.4;
}

.transfer-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.transfer-extras-grid {
  row-gap: 12px;
}

/* Same style as hero .checkbox-group, but white (dark form background) */
.transfer-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.transfer-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.3215686275);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.transfer-checkbox input[type=checkbox]:checked {
  border-color: #fff;
  background: transparent;
  /* Same checkmark as hero .checkbox-group, white stroke */
}
.transfer-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 10l3 3 7-7' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}
.transfer-checkbox span {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #fff;
}

.transfer-requests-label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

/* Summary Card */
.transfer-summary {
  grid-column: 3;
  background: #fff;
  padding: 32px;
  position: sticky;
  top: 96px;
  align-self: start;
}

.transfer-summary-title {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #0c0f17;
  margin: 0 0 24px 0;
}

.transfer-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.transfer-summary-label {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: rgba(12, 15, 23, 0.56);
}

.transfer-summary-value {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #0c0f17;
}

.transfer-summary-divider {
  height: 1px;
  background: rgba(12, 15, 23, 0.1);
  margin: 16px 0;
}

.transfer-summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.transfer-summary-price {
  font-family: "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0c0f17;
}

.transfer-summary-note {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: rgba(12, 15, 23, 0.56);
  margin-bottom: 24px;
}

.transfer-summary-breakdown {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}

.transfer-summary-breakdown-item {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(12, 15, 23, 0.72);
  margin-bottom: 6px;
}

.transfer-submit {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(to right, #fddfae 0%, #f4c58b 50%, #f7ce95 100%);
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.transfer-submit:hover {
  background: linear-gradient(to right, #fee5c0 0%, #f5ce9b 50%, #f8d5a5 100%);
}

.transfer-confirm {
  font-family: "Manrope", "Visby CF", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: rgba(12, 15, 23, 0.56);
  text-align: center;
}

/* Responsive — same breakpoints as header/hero (xl 1440, lg 1024, md 768) */
@media (max-width: 1024px) {
  .transfer-form-card {
    grid-column: auto;
  }
  .transfer-summary {
    grid-column: auto;
    position: static;
  }
}
@media (max-width: 768px) {
  .transfer-page {
    padding-top: 88px;
    padding-bottom: 60px;
  }
  .transfer-form-card {
    padding: 24px;
  }
  .transfer-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 16px;
  }
  .transfer-row.location {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .transfer-swap-wrap {
    display: none;
  }
  .swap-btn {
    display: none;
  }
  .transfer-section {
    margin-bottom: 32px;
  }
  .transfer-section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .transfer-title {
    font-size: 32px;
  }
  .transfer-checkbox-group {
    flex-direction: column;
    gap: 12px;
  }
  .transfer-summary-row {
    flex-direction: column;
    gap: 4px;
  }
  .transfer-input,
  .transfer-select {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .transfer-page {
    padding-top: 88px;
    padding-bottom: 48px;
  }
  .transfer-container {
    padding: 0 10px;
  }
  .transfer-form-card {
    padding: 20px;
  }
  .transfer-section {
    margin-bottom: 28px;
  }
  .transfer-section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .transfer-row {
    margin-bottom: 14px;
  }
  .transfer-summary {
    padding: 24px;
  }
}

/*# sourceMappingURL=style.css.map */
