/* Typography */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap");

/* ~~~~~~~~~~~~~~~~~ */
/* ~~~ RESET CSS ~~~ */
/* ~~~~~~~~~~~~~~~~~ */
/* *:where(:not(html, iframe, canvas, img, svg, video, pre):not(svg *, symbol *)) {
  all: unset;
  display: revert;
} */
html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu {
  list-style: none;
}
img {
  max-inline-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
::placeholder {
  color: unset;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:root {
  --gold: #bfa888;
  --light-bg: #f4f2ed;
  --black: #000000;
  --white: #ffffff;

  --font-150: calc(10rem + (150 - 100) * ((100vw - 300px) / (1800 - 300)));
  --line-150: calc(10rem + (150 - 100) * ((100vw - 300px) / (1800 - 300)));

  --font-110: calc(6rem + (110 - 60) * ((100vw - 300px) / (1800 - 300)));
  --line-110: calc(6rem + (80 - 60) * ((100vw - 300px) / (1800 - 300)));

  --font-60: calc(4.8rem + (60 - 48) * ((100vw - 300px) / (1800 - 300)));
  --line-60: calc(5.4rem + (66 - 54) * ((100vw - 300px) / (1800 - 300)));

  --font-48: calc(3.6rem + (48 - 36) * ((100vw - 300px) / (1800 - 300)));
  --line-48: calc(3.8rem + (50 - 38) * ((100vw - 300px) / (1800 - 300)));

  --font-40: calc(3.2rem + (40 - 32) * ((100vw - 300px) / (1800 - 300)));
  --line-40: calc(3.4rem + (44 - 34) * ((100vw - 300px) / (1800 - 300)));

  --font-32: calc(2.4rem + (32 - 24) * ((100vw - 300px) / (1800 - 300)));
  --line-32: calc(2.6rem + (36 - 26) * ((100vw - 300px) / (1800 - 300)));

  --font-30: calc(2.4rem + (30 - 24) * ((100vw - 300px) / (1800 - 300)));
  --line-30: calc(2.6rem + (32 - 26) * ((100vw - 300px) / (1800 - 300)));

  --font-24: calc(1.8rem + (24 - 18) * ((100vw - 300px) / (1800 - 300)));
  --line-24: calc(2.2rem + (30 - 22) * ((100vw - 300px) / (1800 - 300)));

  --font-20: calc(1.6rem + (20 - 16) * ((100vw - 300px) / (1800 - 300)));
  --line-20: calc(1.9rem + (26 - 19) * ((100vw - 300px) / (1800 - 300)));

  --font-18: calc(1.6rem + (18 - 16) * ((100vw - 300px) / (1800 - 300)));
  --line-18: calc(1.7rem + (19 - 17) * ((100vw - 300px) / (1800 - 300)));

  --font-16: calc(1.4rem + (16 - 14) * ((100vw - 300px) / (1800 - 300)));
  --line-16: calc(1.8rem + (20 - 18) * ((100vw - 300px) / (1800 - 300)));

  --font-14: calc(1.4rem + (14 - 14) * ((100vw - 300px) / (1800 - 300)));
  --line-14: calc(1.6rem + (16 - 16) * ((100vw - 300px) / (1800 - 300)));

  --font-12: 1.2rem;
  --line-12: 1.4rem;
}
html,
body {
  font-size: 10px;
  overflow-x: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: var(--white);
}

/* Base Typography */
body {
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* section:not(:first-of-type) {
  margin: 3.5rem 0;
}
section:last-of-type {
  margin-bottom: 0;
} */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Upright", serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: var(--black);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--black);
}
.txt-150 {
  font-size: var(--font-150);
  line-height: var(--line-150);
}
.txt-110 {
  font-size: var(--font-110);
  line-height: var(--line-110);
}
.txt-60 {
  font-size: var(--font-60);
  line-height: var(--line-60);
}
.txt-48 {
  font-size: var(--font-48);
  line-height: var(--line-48);
}
.txt-40 {
  font-size: var(--font-40);
  line-height: var(--line-40);
}
.txt-32 {
  font-size: var(--font-32);
  line-height: var(--line-32);
}
.txt-24 {
  font-size: var(--font-24);
  line-height: var(--line-24);
}
.txt-20 {
  font-size: var(--font-20);
  line-height: var(--line-20);
}
.txt-18 {
  font-size: var(--font-18);
  line-height: var(--line-18);
}
.txt-16 {
  font-size: var(--font-16);
  line-height: var(--line-16);
}
.txt-14 {
  font-size: var(--font-14);
  line-height: var(--line-14);
}
.txt-12 {
  font-size: var(--font-12);
  line-height: var(--line-12);
}
/* Luxury Text Styles */
.color-white {
  color: var(--white);
}
.color-black {
  color: var(--black);
}
.text-luxury {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-elegant {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-accent {
  color: var(--gold);
}
.strong {
  font-weight: 600;
}
.medium {
  font-weight: 500;
}
.light {
  font-weight: 300;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}

/* Navigation Typography */
nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}

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

/* Button Typography */
button,
.button {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 21rem;
  border: 1px solid transparent;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.5rem 3rem;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 600px) {
  .button {
    padding: 1rem 2rem;
    max-width: 100%;
    font-size: 1.2rem;
    text-align: center;
  }
}
.button-primary {
  background-color: var(--gold);
  color: var(--white);
}
.button-primary:hover {
  background-color: rgb(156, 136, 109);
  color: var(--white);
}
.button-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.button-secondary:hover {
  background-color: var(--white);
  color: var(--black);
}

/* Price Typography */
.price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

/* Section Headers */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: var(--black);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 1rem auto;
}

/* Quote Typography */
.quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
}

/* Feature Text */
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
}

/* Layout */
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.block {
  display: block;
}
.hidden {
  display: none;
}

/* Flex & Grid */
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-1 {
  flex: 1;
}
.flex-auto {
  flex: auto;
}
.flex-initial {
  flex: initial;
}
.flex-none {
  flex: none;
}

/* Grid Layout */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 600px) {
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Spacing */
.m-auto {
  margin: auto;
}
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-4 {
  margin: 1rem;
}
.m-5 {
  margin: 1.25rem;
}
.m-6 {
  margin: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-0 {
  margin-left: 0;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}

.mr-0 {
  margin-right: 0;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-6 {
  margin-right: 1.5rem;
}

/* Padding */
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-20 {
  padding: 5rem;
}

.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-10 {
  padding-top: 2.5rem;
}

.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-0 {
  padding-left: 0;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}

.pr-0 {
  padding-right: 0;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pr-6 {
  padding-right: 1.5rem;
}

.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.py-15 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.py-20 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.py-40 {
  padding-top: 40rem;
  padding-bottom: 40rem;
}
@media screen and (max-width: 600px) {
  .sm\:py-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .sm\:py-20 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
}
/* Width & Height */
.w-full {
  width: 100%;
}
.w-1\/2 {
  width: 50%;
}
.w-screen {
  width: 100vw;
}
.w-auto {
  width: auto;
}

.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-auto {
  height: auto;
}
.max-w-xs {
  max-width: 20rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-8xl {
  max-width: 140rem;
}

.max-w-full {
  max-width: 100%;
}
.max-w-screen {
  max-width: 100vw;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Flex Alignment */
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}

/* Gap */
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}

/* Position */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}

/* Z-index */
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}

/* Overflow */
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}

.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  filter: brightness(0.7) saturate(1.1);
}
.hero-section .text-luxury {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.hero-section .text-elegant {
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
}
.hero-section p {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero-section a {
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

@media (max-width: 900px) {
  .hero-section .text-luxury {
    font-size: 3rem;
  }
  .hero-section .max-w-2xl {
    margin-left: 0;
    max-width: 90vw;
  }
  .hero-section {
    min-height: 70vh;
  }
}

@media (max-width: 600px) {
  .hero-section .text-luxury {
    font-size: 2rem;
  }
  .hero-section .max-w-2xl {
    margin-left: 0;
    max-width: 100vw;
    padding: 1rem;
  }
  .hero-section {
    min-height: 60vh;
  }
}

.luxury-info-section {
  position: relative;
  background: transparent;
  text-align: center;
}
.luxury-bg-word {
  font-weight: 700;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.luxury-info-section h2 {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
  z-index: 1;
}
.luxury-info-section span.text-elegant {
  color: var(--gold);
  letter-spacing: 0.2em;
  z-index: 1;
}
.luxury-info-section p {
  color: var(--black);
  opacity: 0.7;
  font-weight: 300;
  max-width: 600px;
  z-index: 1;
}
@media (max-width: 600px) {
  .luxury-bg-word {
    top: 1rem;
  }

  .luxury-info-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.color-gold {
  color: var(--gold);
}
.color-black {
  color: var(--black);
}
.color-white {
  color: var(--white);
}

/* Gallery Section */
.gallery-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-img-box {
  background: var(--white);
  padding: 0.5rem;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-img-box:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img-box--small {
  width: 260px;
  height: 320px;
}

.gallery-img-box--large {
  width: 420px;
  height: 320px;
}

@media (max-width: 768px) {
  .gallery-section {
    gap: 1rem;
  }

  .gallery-img-box--small,
  .gallery-img-box--large {
    width: 100%;
    max-width: 420px;
    height: 280px;
  }
}

.testimonial-slider-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-align: center;
  position: relative;
}
.testimonial-slider-outer .subtitle {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}
.testimonial-slider-outer h2 {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
}
.testimonial-slider-inner {
  position: relative;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  min-height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.testimonial-bg-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.15s;
  z-index: 2;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}
.arrow svg {
  display: block;
}

.arrow-left {
  left: 2rem;
}
.arrow-right {
  right: 2rem;
}
.testimonial-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.testimonial-text {
  text-align: center;
  color: var(--black);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}
.testimonial-name {
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.1em;
}
.testimonial-role {
  color: var(--black);
  opacity: 0.7;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .testimonial-slider-outer h2 {
    font-size: 2.2rem;
  }
  .testimonial-slider-inner {
    max-width: 95vw;
    min-height: 220px;
  }
  .arrow-left,
  .arrow-right {
    margin: 0 0.5rem;
  }
}
@media (max-width: 600px) {
  .testimonial-slider-outer {
    padding: 3rem 0;
  }
  .testimonial-slider-inner {
    min-height: 180px;
  }
  .testimonial-bg-svg {
    width: 200px;
    height: 200px;
  }
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-left,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}
.header-left {
  justify-content: flex-start;
}
.header-right {
  justify-content: flex-end;
}
.header-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section--yachts {
  background-image: url("/assets/video/video-boat.mp4");
  background-size: cover;
  background-position: 50% 50%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.35);
  min-height: 40vh;
  width: 100%;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-title {
  color: #fff;
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section--yachts,
  .hero-overlay {
    min-height: 50vh;
  }
}

.bg-dark {
  background: #0a1a26;
}
.bg-gold {
  background: #f4f2ec;
}
.text-gold {
  color: #bfa888;
}
.text-gray-light {
  color: #bfc9d1;
}
.font-playfair {
  font-family: "Cormorant Upright", serif;
}
.footer-logo {
  max-width: 120px;
  height: auto;
}
.footer-link {
  color: #bfc9d1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #bfa888;
}
.footer-social {
  color: #bfa888;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social:hover {
  color: #fff;
}
.footer-input {
  background: transparent;
  border: 1px solid #bfa888;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
}
.footer-btn {
  background: #bfa888;
  color: #0a1a26;
  border: 1px solid #bfa888;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.footer-btn:hover {
  background: #fff;
  color: #bfa888;
}
.rounded-l {
  border-radius: 4px 0 0 4px;
}
.rounded-r {
  border-radius: 0 4px 4px 0;
}
.footer {
  background: #0a1a26;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 1rem 1rem 1rem;
}
.footer-col {
  min-width: 220px;
}
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 4rem 2rem 2rem 2rem;
  }
  .footer-col {
    margin-bottom: 0;
  }
}

/* If you want to apply Cormorant Upright to all text except headings, you can add: */
/*
* {
  font-family: "Cormorant Upright", serif;
}
*/
.hero-slider-slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.hero-slider-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slider .relative,
hero-slider .relative {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
@media (max-width: 600px) {
  .hero-slider-slide,
  .hero-slider-overlay {
    min-height: 40vh;
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.gap-4 {
  gap: 1rem;
}
.rounded {
  border-radius: 0.5rem;
}
.latest-models-grid {
  overflow: hidden;
  min-height: 400px;
}

/* Add overflow:hidden to the direct children divs of latest-models-grid */
.latest-models-grid > div {
  overflow: hidden;
  border-radius: 0.5rem; /* Ensure rounded corners are respected with overflow:hidden */
}

.latest-models-grid img {
  transition: transform 1s ease-in-out; /* Slow and subtle transition */
}

.latest-models-grid img:hover {
  transform: scale(1.2); /* Subtle zoom, e.g., 5% */
}

@media (max-width: 900px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  .col-span-2,
  .row-span-2 {
    grid-column: span 1 / span 1;
    grid-row: span 1 / span 1;
  }
}

/* Video Section */
.video-section {
  position: relative;
  width: 100vw;
  min-height: 50vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 768px) {
  .video-section {
    height: 70vh;
  }
}

/* Hero Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-slider-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.hero-slider-dot:hover {
  background: var(--white);
}

/* Mobile Responsiveness for Hero Slider */
@media (max-width: 768px) {
  .hero-slider-arrow-left,
  .hero-slider-arrow-right {
    display: none;
  }

  .hero-slider-dots {
    bottom: 1.5rem;
  }

  .hero-slider-dot {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* Mobile Specific Styles (sm- prefix) */
@media (max-width: 600px) {
  .sm\:flex {
    display: flex;
  }
  .sm\:grid {
    display: grid;
  }
  .sm\:block {
    display: block;
  }
  .sm\:hidden {
    display: none;
  }

  /* Mobile Typography */
  .sm\:txt-150 {
    font-size: calc(6rem + (150 - 60) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(6rem + (150 - 60) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-110 {
    font-size: calc(4rem + (110 - 40) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(4rem + (110 - 40) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-60 {
    font-size: calc(3rem + (60 - 30) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(3rem + (60 - 30) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-48 {
    font-size: calc(2.4rem + (48 - 24) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(2.4rem + (48 - 24) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-40 {
    font-size: calc(2rem + (40 - 20) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(2rem + (40 - 20) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-32 {
    font-size: calc(1.8rem + (32 - 18) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(1.8rem + (32 - 18) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-24 {
    font-size: calc(1.6rem + (24 - 16) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(1.6rem + (24 - 16) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-20 {
    font-size: calc(1.4rem + (20 - 14) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(1.4rem + (20 - 14) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-18 {
    font-size: calc(1.3rem + (18 - 13) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(1.3rem + (18 - 13) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-16 {
    font-size: calc(1.2rem + (16 - 12) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(1.2rem + (16 - 12) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-14 {
    font-size: calc(1.1rem + (14 - 11) * ((100vw - 300px) / (600 - 300)));
    line-height: calc(1.1rem + (14 - 11) * ((100vw - 300px) / (600 - 300)));
  }
  .sm\:txt-12 {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  /* Mobile Spacing */
  .sm\:m-0 {
    margin: 0;
  }
  .sm\:m-1 {
    margin: 0.125rem;
  }
  .sm\:m-2 {
    margin: 0.25rem;
  }
  .sm\:m-3 {
    margin: 0.375rem;
  }
  .sm\:m-4 {
    margin: 0.5rem;
  }
  .sm\:m-5 {
    margin: 0.625rem;
  }
  .sm\:m-6 {
    margin: 0.75rem;
  }

  .sm\:p-0 {
    padding: 0;
  }
  .sm\:p-1 {
    padding: 0.125rem;
  }
  .sm\:p-2 {
    padding: 0.25rem;
  }
  .sm\:p-3 {
    padding: 0.375rem;
  }
  .sm\:p-4 {
    padding: 0.5rem;
  }
  .sm\:p-5 {
    padding: 0.625rem;
  }
  .sm\:p-6 {
    padding: 0.75rem;
  }
  .sm\:p-8 {
    padding: 1rem;
  }
  .sm\:p-10 {
    padding: 1.25rem;
  }
  .sm\:p-20 {
    padding: 2.5rem;
  }

  /* Mobile Container */
  .sm\:container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* Mobile Width & Height */
  .sm\:w-full {
    width: 100%;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:h-full {
    height: 100%;
  }
  .sm\:h-70vh {
    height: 70vh;
  }
  .sm\:h-1\/2 {
    height: 50%;
  }

  .sm\:h-auto {
    height: auto;
  }

  /* Mobile Max Width */
  .sm\:max-w-xs {
    max-width: 16rem;
  }
  .sm\:max-w-sm {
    max-width: 20rem;
  }
  .sm\:max-w-md {
    max-width: 24rem;
  }
  .sm\:max-w-lg {
    max-width: 28rem;
  }
  .sm\:max-w-xl {
    max-width: 32rem;
  }
  .sm\:max-w-2xl {
    max-width: 36rem;
  }
  .sm\:max-w-3xl {
    max-width: 42rem;
  }
  .sm\:max-w-4xl {
    max-width: 48rem;
  }
  .sm\:max-w-5xl {
    max-width: 56rem;
  }
  .sm\:max-w-6xl {
    max-width: 64rem;
  }
  .sm\:max-w-7xl {
    max-width: 72rem;
  }
  .sm\:max-w-8xl {
    max-width: 80rem;
  }

  /* Mobile Flex & Grid */
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .sm\:flex-1 {
    flex: 1;
  }
  .sm\:flex-auto {
    flex: auto;
  }
  .sm\:flex-initial {
    flex: initial;
  }
  .sm\:flex-none {
    flex: none;
  }

  /* Mobile Grid Columns */
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Mobile Alignment */
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:items-end {
    align-items: flex-end;
  }
  .sm\:items-stretch {
    align-items: stretch;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:justify-around {
    justify-content: space-around;
  }

  /* Mobile Gap */
  .sm\:gap-0 {
    gap: 0;
  }
  .sm\:gap-1 {
    gap: 0.125rem;
  }
  .sm\:gap-2 {
    gap: 0.25rem;
  }
  .sm\:gap-3 {
    gap: 0.375rem;
  }
  .sm\:gap-4 {
    gap: 0.5rem;
  }
  .sm\:gap-5 {
    gap: 0.625rem;
  }
  .sm\:gap-6 {
    gap: 0.75rem;
  }

  /* Mobile Position */
  .sm\:relative {
    position: relative;
  }
  .sm\:absolute {
    position: absolute;
  }
  .sm\:fixed {
    position: fixed;
  }
  .sm\:sticky {
    position: sticky;
  }

  /* Mobile Z-index */
  .sm\:z-0 {
    z-index: 0;
  }
  .sm\:z-10 {
    z-index: 10;
  }
  .sm\:z-20 {
    z-index: 20;
  }
  .sm\:z-30 {
    z-index: 30;
  }
  .sm\:z-40 {
    z-index: 40;
  }
  .sm\:z-50 {
    z-index: 50;
  }

  /* Mobile Overflow */
  .sm\:overflow-auto {
    overflow: auto;
  }
  .sm\:overflow-hidden {
    overflow: hidden;
  }
  .sm\:overflow-scroll {
    overflow: scroll;
  }
  .sm\:overflow-x-auto {
    overflow-x: auto;
  }
  .sm\:overflow-y-auto {
    overflow-y: auto;
  }

  /* Mobile Text Alignment */
  .sm\:text-left {
    text-align: left;
  }
  .sm\:text-center {
    text-align: center;
  }
  .sm\:text-right {
    text-align: right;
  }

  /* Mobile Button Adjustments */
  .sm\:button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    max-width: 100%;
  }
}

/* 12-Column Grid System */
/* Base Grid Classes */
.grid-1 {
  width: 8.333333%;
}
.grid-2 {
  width: 16.666667%;
}
.grid-3 {
  width: 25%;
}
.grid-4 {
  width: 33.333333%;
}
.grid-5 {
  width: 41.666667%;
}
.grid-6 {
  width: 50%;
}
.grid-7 {
  width: 58.333333%;
}
.grid-8 {
  width: 66.666667%;
}
.grid-9 {
  width: 75%;
}
.grid-10 {
  width: 83.333333%;
}
.grid-11 {
  width: 91.666667%;
}
.grid-12 {
  width: 100%;
}

/* Large Screen Grid Classes (lg-) */
@media (min-width: 1024px) {
  .lg-1 {
    width: 8.333333%;
  }
  .lg-2 {
    width: 16.666667%;
  }
  .lg-3 {
    width: 25%;
  }
  .lg-4 {
    width: 33.333333%;
  }
  .lg-5 {
    width: 41.666667%;
  }
  .lg-6 {
    width: 50%;
  }
  .lg-7 {
    width: 58.333333%;
  }
  .lg-8 {
    width: 66.666667%;
  }
  .lg-9 {
    width: 75%;
  }
  .lg-10 {
    width: 83.333333%;
  }
  .lg-11 {
    width: 91.666667%;
  }
  .lg-12 {
    width: 100%;
  }
}

/* Small Screen Grid Classes (sm-) */
@media (max-width: 600px) {
  .sm-1 {
    width: 8.333333%;
  }
  .sm-2 {
    width: 16.666667%;
  }
  .sm-3 {
    width: 25%;
  }
  .sm-4 {
    width: 33.333333%;
  }
  .sm-5 {
    width: 41.666667%;
  }
  .sm-6 {
    width: 50%;
  }
  .sm-7 {
    width: 58.333333%;
  }
  .sm-8 {
    width: 66.666667%;
  }
  .sm-9 {
    width: 75%;
  }
  .sm-10 {
    width: 83.333333%;
  }
  .sm-11 {
    width: 91.666667%;
  }
  .sm-12 {
    width: 100%;
  }
}

/* Grid Container */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Grid Item */
.grid-item {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Grid Row */
.grid-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Grid Column */
.grid-col {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Grid Gaps */
.grid-gap-0 {
  gap: 0;
}
.grid-gap-1 {
  gap: 0.25rem;
}
.grid-gap-2 {
  gap: 0.5rem;
}
.grid-gap-3 {
  gap: 0.75rem;
}
.grid-gap-4 {
  gap: 1rem;
}
.grid-gap-5 {
  gap: 1.25rem;
}
.grid-gap-6 {
  gap: 1.5rem;
}

/* Grid Alignment */
.grid-align-start {
  align-items: flex-start;
}
.grid-align-center {
  align-items: center;
}
.grid-align-end {
  align-items: flex-end;
}
.grid-align-stretch {
  align-items: stretch;
}

.grid-justify-start {
  justify-content: flex-start;
}
.grid-justify-center {
  justify-content: center;
}
.grid-justify-end {
  justify-content: flex-end;
}
.grid-justify-between {
  justify-content: space-between;
}
.grid-justify-around {
  justify-content: space-around;
}

/* Grid Order */
.grid-order-1 {
  order: 1;
}
.grid-order-2 {
  order: 2;
}
.grid-order-3 {
  order: 3;
}
.grid-order-4 {
  order: 4;
}
.grid-order-5 {
  order: 5;
}
.grid-order-6 {
  order: 6;
}
.grid-order-7 {
  order: 7;
}
.grid-order-8 {
  order: 8;
}
.grid-order-9 {
  order: 9;
}
.grid-order-10 {
  order: 10;
}
.grid-order-11 {
  order: 11;
}
.grid-order-12 {
  order: 12;
}

/* Responsive Grid Order */
@media (max-width: 600px) {
  .sm-order-1 {
    order: 1;
  }
  .sm-order-2 {
    order: 2;
  }
  .sm-order-3 {
    order: 3;
  }
  .sm-order-4 {
    order: 4;
  }
  .sm-order-5 {
    order: 5;
  }
  .sm-order-6 {
    order: 6;
  }
  .sm-order-7 {
    order: 7;
  }
  .sm-order-8 {
    order: 8;
  }
  .sm-order-9 {
    order: 9;
  }
  .sm-order-10 {
    order: 10;
  }
  .sm-order-11 {
    order: 11;
  }
  .sm-order-12 {
    order: 12;
  }
}

@media (min-width: 1024px) {
  .lg-order-1 {
    order: 1;
  }
  .lg-order-2 {
    order: 2;
  }
  .lg-order-3 {
    order: 3;
  }
  .lg-order-4 {
    order: 4;
  }
  .lg-order-5 {
    order: 5;
  }
  .lg-order-6 {
    order: 6;
  }
  .lg-order-7 {
    order: 7;
  }
  .lg-order-8 {
    order: 8;
  }
  .lg-order-9 {
    order: 9;
  }
  .lg-order-10 {
    order: 10;
  }
  .lg-order-11 {
    order: 11;
  }
  .lg-order-12 {
    order: 12;
  }
}

.bg-gray-border {
  border: 1px solid #d9d9d9;
}

/* animations */
/* fwtografies */
/* contact 1 extra pedio me tis varkse  kai svg stis varkes */
/* location page */

/* Responsive Header */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-logo img {
  height: 120px;
  width: 120px;
}
.header-title {
  font-family: "Cormorant Upright", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.05em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
  color: var(--white);
}
/* .header-link:hover,
.header-link.active {
  color: var(--gold);
}
.header-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -4px;
} */
.header-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1.5rem;
}
.header-menu-btn span,
.header-menu-btn span::before,
.header-menu-btn span::after {
  display: block;
  background: var(--white);
  height: 3px;
  width: 28px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s;
}
.header-menu-btn span::before,
.header-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.header-menu-btn span::before {
  top: -9px;
}
.header-menu-btn span::after {
  top: 9px;
}
@media (max-width: 900px) {
  .header-inner {
    padding: 1.2rem 1rem;
  }
  .header-nav {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #0a1a26;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    padding: 1.5rem 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    height: 100vh;
    padding-top: 10rem;
  }
  .header-nav.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    background: #0a1a26;
    height: 100vh;
    width: 100vw;
    z-index: 99;
    padding: 1.5rem 0;
    gap: 5rem;
    padding-top: 10rem;
  }
  .header-nav.open .header-link {
    font-size: 3rem;
  }
  header.transparent:has(.header-nav.open) {
    background: #0a1a26;
  }

  .header-menu-btn {
    display: block;
  }
}

/* Boat Image Slider */
boat-image-slider {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.boat-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.boat-slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.boat-slider-arrow-left,
.boat-slider-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.boat-slider-arrow-left {
  left: 1.5rem;
}

.boat-slider-arrow-right {
  right: 1.5rem;
}

.boat-slider-arrow-left svg,
.boat-slider-arrow-right svg {
  width: 20px; /* Adjust size as needed */
  height: auto;
  display: block;
}

.boat-slider-arrow-left svg polyline,
.boat-slider-arrow-right svg polyline {
  stroke: #fff;
  stroke-width: 2px; /* Adjust stroke width if needed */
}

.boat-slider-dots-container {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 3;
}

.boat-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.boat-slider-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

.boat-slider-dot:hover {
  background-color: #fff;
}

/* Ensure the boat-image-slider itself has a defined height if its parent doesn't */
.w-1\/2.h-full boat-image-slider {
  height: 100%; /* Or specific height like 500px, etc. */
}
.sm\:w-full.sm\:h-1\/2 boat-image-slider {
  height: 100%; /* Or specific height */
}

form button {
  width: 100%;
  max-width: 100% !important;
}
footer > div {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 700px) {
  footer > div {
    flex-direction: column;
  }
}

/* AOS Animation Styles */
[aos] {
  opacity: 0;
  transform: translateY(30px); /* Start slightly lower */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform; /* Hint to browser for optimization */
}

[aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* location page */

/* Spell-out Animation */
[data-spell-out] {
  /* Prevent shifting during letter injection */
  display: inline-block;
  min-height: 8rem; /* Should match the font-size */
}
.spell-out-letter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  display: inline-block;
}

.spell-out-letter.visible {
  opacity: 1;
  transform: translateY(0);
}
