/*
Theme Name: Altivora Theme
Author: Melis
Version: 1.0
*/

/* FONTS */
@font-face {
  font-family: 'ACBalooPaaji';
  src: url('assets/fonts/ACBalooPaaji.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('assets/fonts/Zain-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('assets/fonts/Zain-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('assets/fonts/Zain-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('assets/fonts/Zain-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* BASIC RESET */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/*body {*/
/*  font-family: 'Zain', Arial, Helvetica, sans-serif;*/
/*  background: #ffffff;*/
/*  color: #222222;*/
/*}*/
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: #0b3540;
  background: #ffffff;
}


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

a {
  transition: all 0.2s ease;
}

/* HEADER */
.altivora-header {
  width: 100%;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background: transparent;
}

/* Ελαφρύ gradient μόνο για να διαβάζεται το menu πάνω στο video */
.altivora-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 45, 55, 0.45) 0%,
    rgba(0, 45, 55, 0.18) 65%,
    rgba(0, 45, 55, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Για όταν είσαι logged in και φαίνεται το WordPress admin bar */
.admin-bar .altivora-header {
  top: 32px;
}

.altivora-header a {
  color: #ffffff;
  text-decoration: none;
}

/* TOP BAR */
.altivora-topbar {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 42px;
  border-bottom: 1px solid rgba(80, 230, 230, 0.65);
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.altivora-top-left,
.altivora-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-separator {
  opacity: 0.9;
}

.altivora-langs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.altivora-langs img {
  width: 24px;
  height: auto;
  display: block;
}

/* MAIN MENU */
.altivora-main-menu {
  height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
  align-items: start;
  padding: 38px 70px 0;
}
.altivora-menu {
  padding-top: 10px;
  border-bottom: 4px solid #31c6c7;
}

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

.altivora-menu-left ul {
  justify-content: flex-end;
}

.altivora-menu-right ul {
  justify-content: flex-start;
}

.altivora-menu a {
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 3px rgba(0,0,0,0.35);
  white-space: nowrap;
}

.altivora-menu a:hover {
  color: #38d0d0;
}

.altivora-logo {
  text-align: center;
  margin-top: -8px;
}

.altivora-logo img {
  max-width: 155px;
  width: auto;
  height: auto;
  display: inline-block;
}

/* HERO */
.altivora-hero {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 140px;
  background: #d9e0e1;
}

/* VIDEO BACKGROUND */
.altivora-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* Σκοτείνιασμα πάνω από το video για να φαίνονται τα γράμματα */
.altivora-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 55, 0.18);
  z-index: 1;
}

.altivora-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  margin-bottom: 35px;
}

.altivora-hero-content h1 {
  margin: 0 0 18px;
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.altivora-hero-btn {
  display: inline-block;
  background: #31c6c7;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

.altivora-hero-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

/* WHITE WAVE */
.altivora-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 150px;
  z-index: 2;
  line-height: 0;
}

.altivora-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.altivora-wave path {
  fill: #ffffff;
}

/* HOME SEA INTRO SECTION */
.altivora-sea-section {
  background: #ffffff;
  padding: 90px 20px 100px;
}

.altivora-sea-container {
  max-width: 1150px;
  margin: 0 auto;
}

.altivora-sea-heading {
  text-align: center;
  margin-bottom: 42px;
}

.altivora-section-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.altivora-sea-heading h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
}

.altivora-sea-content {
  max-width: 920px;
  margin: 0 auto;
  color: #253f45;
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.75;
  text-align: center;
}

.altivora-sea-content p {
  margin: 0 0 24px;
}

.altivora-sea-content p:last-child {
  margin-bottom: 0;
}

.altivora-sea-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.altivora-outline-btn,
.altivora-solid-btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
}

.altivora-outline-btn {
  color: #31c6c7;
  border: 2px solid #31c6c7;
  background: transparent;
}

.altivora-outline-btn:hover {
  background: #31c6c7;
  color: #ffffff;
}

.altivora-solid-btn {
  color: #ffffff;
  background: #31c6c7;
  border: 2px solid #31c6c7;
}

.altivora-solid-btn:hover {
  background: #24b5b6;
  border-color: #24b5b6;
  color: #ffffff;
}

/* INNER PAGES */
.page-main {
  padding: 180px 20px 80px;
  background: #ffffff;
  min-height: 500px;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-title {
  font-family: 'ACBalooPaaji', Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 30px;
  color: #12383f;
}

.page-content {
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #222222;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .altivora-main-menu {
    padding-left: 40px;
    padding-right: 40px;
    grid-template-columns: 1fr 220px 1fr;
  }

  .altivora-menu ul {
    gap: 28px;
  }

  .altivora-menu a {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .home .altivora-header,
  .front-page .altivora-header {
    position: relative;
    top: 0;
    background: rgba(0, 60, 70, 0.95);
  }

  .admin-bar.home .altivora-header,
  .admin-bar.front-page .altivora-header {
    top: 0;
  }

  .altivora-topbar {
    height: auto;
    padding: 10px 15px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
  }

  .altivora-main-menu {
    height: auto;
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 18px;
  }

  .altivora-logo {
    order: 1;
    margin-top: 0;
  }

  .altivora-menu-left {
    order: 2;
  }

  .altivora-menu-right {
    order: 3;
  }

  .altivora-menu {
    border-bottom: none;
    padding-top: 0;
  }

  .altivora-menu ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 25px;
    padding-bottom: 0;
  }

  .altivora-menu a {
    font-size: 17px;
  }

  .altivora-logo img {
    max-width: 140px;
  }

  .altivora-hero {
      min-height: 620px;
      padding-bottom: 90px;
  }

  .altivora-hero-content h1 {
    font-size: 32px;
    padding: 0 20px;
  }

  .page-main {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .altivora-sea-section {
    padding: 60px 18px 70px;
  }

  .altivora-sea-heading h2 {
    font-size: 31px;
  }

  .altivora-sea-content {
    font-size: 18px;
    line-height: 1.75;
    text-align: left;
  }

  .altivora-sea-actions {
    flex-direction: column;
    align-items: center;
  }

  .altivora-outline-btn,
  .altivora-solid-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .admin-bar.home .altivora-header,
  .admin-bar.front-page .altivora-header {
    top: 0;
  }

  .altivora-top-left,
  .altivora-top-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .altivora-hero-content h1 {
    font-size: 28px;
  }

  .altivora-wave {
    height: 100px;
  }
}
/* FLEET PAGE */
.fleet-page {
  background: #ffffff;
}

.fleet-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.fleet-hero {
  padding: 115px 0 80px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.fleet-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
}

.fleet-hero h1,
.fleet-included-heading h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.fleet-hero p {
  max-width: 850px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.fleet-boats-section {
  padding: 40px 0 90px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.fleet-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.fleet-card-featured {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
}

.fleet-card-image {
  min-height: 340px;
  background-color: #d9e0e1;
  background-size: cover;
  background-position: center;
}

.fleet-card-content {
  padding: 38px;
}

.fleet-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(49, 198, 199, 0.13);
  color: #1daeb0;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 14px;
}

.fleet-card h2 {
  margin: 0 0 16px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
}

.fleet-card p {
  margin: 0 0 28px;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.fleet-specs div {
  padding: 14px 15px;
  border-radius: 14px;
  background: #f3fbfb;
}

.fleet-specs strong {
  display: block;
  margin-bottom: 3px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.fleet-specs span {
  display: block;
  color: #12383f;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.fleet-btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.fleet-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

.fleet-btn-outline {
  background: transparent;
  color: #31c6c7;
  border: 2px solid #31c6c7;
  box-shadow: none;
}

.fleet-btn-outline:hover {
  background: #31c6c7;
  color: #ffffff;
}

.fleet-included-section {
  padding: 0 0 100px;
}

.fleet-included-box {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #12383f 0%, #0d5960 100%);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.fleet-included-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.22);
}

.fleet-included-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 38px;
}

.fleet-included-heading h2 {
  color: #ffffff;
  font-size: 40px;
}

.fleet-included-heading p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.86);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.55;
}

.fleet-included-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.fleet-included-card {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}

.fleet-included-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.fleet-included-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-included-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.fleet-included-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #31c6c7;
  font-weight: 900;
}

/* Responsive Fleet */
@media (max-width: 1000px) {
  .fleet-card-featured {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-hero {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .fleet-hero {
    padding: 90px 0 55px;
  }

  .fleet-hero h1,
  .fleet-included-heading h2 {
    font-size: 34px;
  }

  .fleet-hero p {
    font-size: 19px;
    text-align: left;
  }

  .fleet-card-content {
    padding: 26px;
  }

  .fleet-card h2 {
    font-size: 30px;
  }

  .fleet-card p {
    font-size: 18px;
  }

  .fleet-specs {
    grid-template-columns: 1fr;
  }

  .fleet-included-box {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .fleet-included-grid {
    grid-template-columns: 1fr;
  }

  .fleet-included-card {
    padding: 24px;
  }

  .fleet-included-card li {
    font-size: 18px;
  }
}
/* BOAT TRIPS PAGE */
.trips-page {
  background: #ffffff;
}

.trips-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.trips-hero {
  padding: 90px 0 80px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.trips-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.trips-hero h1,
.trips-custom-box h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.trips-hero p {
  max-width: 900px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.trips-destinations-section {
  padding: 30px 0 90px;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.trip-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.trip-card-wide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-column: span 2;
}

.trip-card-image {
  min-height: 285px;
  background-color: #d9e0e1;
  background-size: cover;
  background-position: center;
}

.trip-card-content {
  padding: 34px;
}

.trip-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(49, 198, 199, 0.13);
  color: #1daeb0;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.trip-card h2 {
  margin: 0 0 16px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
}

.trip-card h2 small {
  font-size: 22px;
}

.trip-card p {
  margin: 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
}

.trips-custom-section {
  padding: 0 0 100px;
}

.trips-custom-box {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #12383f 0%, #0d5960 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trips-custom-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.22);
}

.trips-custom-box > * {
  position: relative;
  z-index: 2;
}

.trips-custom-box h2 {
  color: #ffffff;
  font-size: 42px;
}

.trips-custom-box p {
  max-width: 850px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.88);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.trips-btn {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.trips-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

/* Responsive Trips */
@media (max-width: 1000px) {
  .trips-grid {
    grid-template-columns: 1fr;
  }

  .trip-card-wide {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .trips-hero {
    padding: 60px 0 55px;
  }

  .trips-hero h1,
  .trips-custom-box h2 {
    font-size: 34px;
  }

  .trips-hero p,
  .trips-custom-box p {
    font-size: 19px;
    text-align: left;
  }

  .trip-card-content {
    padding: 26px;
  }

  .trip-card h2 {
    font-size: 30px;
  }

  .trip-card p {
    font-size: 18px;
  }

  .trips-custom-box {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .trips-btn {
    width: 100%;
    max-width: 310px;
    text-align: center;
  }
}
/* CONTACT PAGE */
.contact-page {
  background: #ffffff;
}

.contact-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero {
  padding: 90px 0 75px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.contact-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.contact-hero h1,
.contact-message-box h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.contact-hero p {
  max-width: 820px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.contact-info-section {
  padding: 35px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
  text-decoration: none;
  color: #12383f;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 60, 70, 0.16);
  border-color: rgba(49, 198, 199, 0.45);
}

.contact-card-wide {
  grid-column: span 4;
  min-height: 160px;
  align-items: center;
  text-align: center;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.13);
  font-size: 25px;
}

.contact-card-wide .contact-icon {
  margin-left: auto;
  margin-right: auto;
}

.contact-label {
  margin-bottom: 8px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.contact-card strong {
  color: #12383f;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 23px;
  line-height: 1.2;
  word-break: break-word;
}

.contact-message-section {
  padding: 0 0 100px;
}

.contact-message-box {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #12383f 0%, #0d5960 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-message-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.22);
}

.contact-message-box > * {
  position: relative;
  z-index: 2;
}

.contact-message-box h2 {
  color: #ffffff;
  font-size: 42px;
}

.contact-message-box p {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.88);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.contact-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.contact-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

.contact-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #31c6c7;
  box-shadow: none;
}

.contact-btn-outline:hover {
  background: #31c6c7;
  color: #ffffff;
}

/* Responsive Contact */
@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 55px;
  }

  .contact-hero h1,
  .contact-message-box h2 {
    font-size: 34px;
  }

  .contact-hero p,
  .contact-message-box p {
    font-size: 19px;
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card-wide {
    grid-column: span 1;
    min-height: auto;
    padding: 26px;
    align-items: flex-start;
    text-align: left;
  }

  .contact-card-wide .contact-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-card strong {
    font-size: 21px;
  }

  .contact-message-box {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
/* ABOUT PAGE */
.about-page {
  background: #ffffff;
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero {
  padding: 90px 0 75px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.about-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.about-hero h1,
.about-story-content h2,
.about-experience-box h2,
.about-values-heading h2,
.about-closing-box h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.about-hero p {
  max-width: 880px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

/* STORY */
.about-story-section {
  padding: 35px 0 90px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: stretch;
}

.about-story-image {
  min-height: 520px;
  border-radius: 30px;
  background-color: #d9e0e1;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
}

.about-story-content {
  padding: 55px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.about-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(49, 198, 199, 0.13);
  color: #1daeb0;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.about-story-content h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.about-story-content p {
  margin: 0 0 22px;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.65;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

/* EXPERIENCE BOX */
.about-experience-section {
  padding: 0 0 90px;
}

.about-experience-box {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #12383f 0%, #0d5960 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-experience-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.22);
}

.about-experience-box > * {
  position: relative;
  z-index: 2;
}

.about-experience-box h2 {
  color: #ffffff;
  font-size: 42px;
}

.about-experience-box p {
  max-width: 880px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.88);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

/* VALUES */
.about-values-section {
  padding: 0 0 90px;
}

.about-values-heading {
  text-align: center;
  margin-bottom: 38px;
}

.about-values-heading h2 {
  font-size: 42px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.about-value-card {
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.about-value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.13);
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 17px;
}

.about-value-card h3 {
  margin: 0 0 14px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.about-value-card p {
  margin: 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

/* CLOSING */
.about-closing-section {
  padding: 0 0 100px;
}

.about-closing-box {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.about-closing-box h2 {
  font-size: 40px;
}

.about-closing-box p {
  max-width: 800px;
  margin: 24px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.about-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.about-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

.about-btn-outline {
  background: transparent;
  color: #31c6c7;
  border: 2px solid #31c6c7;
  box-shadow: none;
}

.about-btn-outline:hover {
  background: #31c6c7;
  color: #ffffff;
}

/* Responsive About */
@media (max-width: 1000px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 55px;
  }

  .about-hero h1,
  .about-story-content h2,
  .about-experience-box h2,
  .about-values-heading h2,
  .about-closing-box h2 {
    font-size: 34px;
  }

  .about-hero p,
  .about-experience-box p,
  .about-closing-box p {
    font-size: 19px;
    text-align: left;
  }

  .about-story-content {
    padding: 30px 26px;
  }

  .about-story-content p {
    font-size: 19px;
  }

  .about-experience-box {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .about-value-card {
    padding: 28px;
  }

  .about-value-card p {
    font-size: 18px;
  }

  .about-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
/* RENTAL PROCESS PAGE */
.rental-page {
  background: #ffffff;
}

.rental-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.rental-hero {
  padding: 90px 0 75px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.rental-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.rental-hero h1,
.rental-hours-content h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.rental-hero p {
  max-width: 900px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

/* TIMELINE */
.rental-steps-section {
  padding: 35px 0 90px;
}

.rental-timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.rental-timeline::before {
  content: "";
  position: absolute;
  left: 37px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: rgba(49, 198, 199, 0.25);
}

.rental-step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 28px;
}

.rental-step-number {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #31c6c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(49, 198, 199, 0.28);
}

.rental-step-content {
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.rental-step-content h2 {
  margin: 0 0 16px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
}

.rental-step-content h3 {
  margin: 26px 0 16px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.rental-step-content p {
  margin: 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.65;
}

.rental-step-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rental-step-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.45;
}

.rental-step-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #31c6c7;
  font-weight: 900;
}

/* DOCUMENTS */
.rental-docs-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: 22px;
  background: #f3fbfb;
  border: 1px solid rgba(49, 198, 199, 0.2);
}

.rental-docs-box p {
  margin-bottom: 22px;
  font-size: 20px;
}

.rental-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rental-doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  color: #12383f;
  text-decoration: none;
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.rental-doc-card:hover {
  border-color: rgba(49, 198, 199, 0.55);
  transform: translateY(-2px);
}

.rental-doc-card span {
  font-size: 28px;
}

.rental-doc-card strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.25;
}

/* HOURS */
.rental-hours-section {
  padding: 0 0 100px;
}

.rental-hours-box {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #12383f 0%, #0d5960 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rental-hours-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.22);
}

.rental-hours-content {
  position: relative;
  z-index: 2;
}

.rental-hours-content h2 {
  color: #ffffff;
  font-size: 42px;
}

.rental-hours-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.rental-hour-card {
  min-width: 210px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
}

.rental-hour-card strong {
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.rental-hours-content p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.rental-btn {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.rental-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

/* RESPONSIVE RENTAL */
@media (max-width: 768px) {
  .rental-hero {
    padding: 60px 0 55px;
  }

  .rental-hero h1,
  .rental-hours-content h2 {
    font-size: 34px;
  }

  .rental-hero p,
  .rental-hours-content p {
    font-size: 19px;
    text-align: left;
  }

  .rental-timeline::before {
    display: none;
  }

  .rental-step {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rental-step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }

  .rental-step-content {
    padding: 26px;
  }

  .rental-step-content h2 {
    font-size: 30px;
  }

  .rental-step-content p,
  .rental-step-content li {
    font-size: 18px;
  }

  .rental-docs-box {
    padding: 22px;
  }

  .rental-docs-grid {
    grid-template-columns: 1fr;
  }

  .rental-hours-box {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .rental-hour-card {
    width: 100%;
    min-width: auto;
  }

  .rental-hour-card strong {
    font-size: 24px;
  }

  .rental-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
/* FAQ PAGE */
.faq-page {
  background: #ffffff;
}

.faq-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-hero {
  padding: 90px 0 75px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.faq-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.faq-hero h1,
.faq-contact-box h2 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.faq-hero p {
  max-width: 820px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

/* FAQ LIST */
.faq-section {
  padding: 35px 0 90px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(0, 60, 70, 0.1);
  border: 1px solid rgba(49, 198, 199, 0.18);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 24px 64px 24px 28px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.13);
  color: #31c6c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 28px 28px;
}

.faq-answer p {
  margin: 0 0 18px;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.65;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: #31c6c7;
  font-weight: 700;
  text-decoration: none;
}

.faq-answer a:hover {
  color: #24b5b6;
}

.faq-answer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-answer li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.45;
}

.faq-answer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #31c6c7;
  font-weight: 900;
}

/* CONTACT BOX */
.faq-contact-section {
  padding: 0 0 100px;
}

.faq-contact-box {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #12383f 0%, #0d5960 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-contact-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(49, 198, 199, 0.22);
}

.faq-contact-box > * {
  position: relative;
  z-index: 2;
}

.faq-contact-box h2 {
  color: #ffffff;
  font-size: 42px;
}

.faq-contact-box p {
  max-width: 780px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.88);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.faq-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.faq-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.faq-btn:hover {
  background: #24b5b6;
  color: #ffffff;
}

.faq-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #31c6c7;
  box-shadow: none;
}

.faq-btn-outline:hover {
  background: #31c6c7;
  color: #ffffff;
}

/* RESPONSIVE FAQ */
@media (max-width: 768px) {
  .faq-hero {
    padding: 60px 0 55px;
  }

  .faq-hero h1,
  .faq-contact-box h2 {
    font-size: 34px;
  }

  .faq-hero p,
  .faq-contact-box p {
    font-size: 19px;
    text-align: left;
  }

  .faq-item summary {
    padding: 22px 58px 22px 22px;
    font-size: 22px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-answer {
    padding: 0 22px 24px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 18px;
  }

  .faq-contact-box {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .faq-actions {
    flex-direction: column;
    align-items: center;
  }

  .faq-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
/* AVAILABILITY PAGE */
.availability-page {
  background: #ffffff;
}

.availability-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.availability-hero {
  padding: 90px 0 75px;
  background: linear-gradient(180deg, #e9f5f5 0%, #ffffff 100%);
  text-align: center;
}

.availability-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.availability-hero h1 {
  margin: 0;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.availability-hero p {
  max-width: 850px;
  margin: 26px auto 0;
  color: #253f45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.65;
}

.availability-form-section {
  padding: 35px 0 100px;
}

.availability-form-box {
  padding: 46px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 60, 70, 0.12);
  border: 1px solid rgba(49, 198, 199, 0.18);
}

.availability-notice {
  margin-bottom: 26px;
  padding: 18px 22px;
  border-radius: 14px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.availability-success {
  background: #e9fbf4;
  color: #176b4d;
  border: 1px solid rgba(23, 107, 77, 0.18);
}

.availability-error {
  background: #fff1f1;
  color: #9b2525;
  border: 1px solid rgba(155, 37, 37, 0.18);
}

.availability-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.availability-field {
  display: flex;
  flex-direction: column;
}

.availability-field-full {
  margin-top: 22px;
}

.availability-field label {
  margin-bottom: 8px;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.availability-field input,
.availability-field select,
.availability-field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 60, 70, 0.18);
  background: #f8fbfb;
  color: #12383f;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  outline: none;
}

.availability-field input:focus,
.availability-field select:focus,
.availability-field textarea:focus {
  border-color: #31c6c7;
  box-shadow: 0 0 0 3px rgba(49, 198, 199, 0.15);
}

.availability-field textarea {
  resize: vertical;
}

.availability-submit {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  background: #31c6c7;
  color: #ffffff;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(49, 198, 199, 0.25);
}

.availability-submit:hover {
  background: #24b5b6;
}

@media (max-width: 768px) {
  .availability-hero {
    padding: 60px 0 55px;
  }

  .availability-hero h1 {
    font-size: 34px;
  }

  .availability-hero p {
    font-size: 19px;
    text-align: left;
  }

  .availability-form-box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .availability-form-grid {
    grid-template-columns: 1fr;
  }

  .availability-submit {
    width: 100%;
    text-align: center;
  }
}
/* VIDEO BACKGROUND FOR INNER PAGE HERO SECTIONS */
.altivora-video-page-hero {
  position: relative;
  overflow: hidden;
  background: #12383f !important;
  min-height: 520px;
  padding-top: 210px;
  padding-bottom: 95px;
  display: flex;
  align-items: center;
  text-align: center;
}

.altivora-page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.altivora-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 55, 0.45);
  z-index: 1;
}

.altivora-video-page-hero > *:not(.altivora-page-hero-video):not(.altivora-page-hero-overlay) {
  position: relative;
  z-index: 2;
}

/* Text πάνω στο video */
.altivora-video-page-hero h1,
.altivora-video-page-hero h2,
.altivora-video-page-hero p {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.altivora-video-page-hero .about-subtitle,
.altivora-video-page-hero .fleet-subtitle,
.altivora-video-page-hero .trips-subtitle,
.altivora-video-page-hero .contact-subtitle,
.altivora-video-page-hero .rental-subtitle,
.altivora-video-page-hero .faq-subtitle,
.altivora-video-page-hero .availability-subtitle {
  color: #31c6c7 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

/* Αν θέλεις το hero να είναι πιο ψηλό */
@media (min-width: 901px) {
  .altivora-video-page-hero {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .altivora-video-page-hero {
    min-height: 420px;
    padding-top: 95px;
    padding-bottom: 65px;
  }
}

/* MOBILE BURGER MENU */
.altivora-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .altivora-header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
  }

  .admin-bar .altivora-header {
    top: 46px;
  }

  .altivora-topbar {
    height: auto;
    padding: 8px 14px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 12px;
  }

  .altivora-top-left,
  .altivora-top-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .altivora-main-menu {
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 18px 14px;
    gap: 0;
  }

  .altivora-logo {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: center;
  }

  .altivora-logo img {
    max-width: 105px;
  }

  .altivora-menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(49, 198, 199, 0.65);
    border-radius: 10px;
    background: rgba(0, 60, 70, 0.35);
    cursor: pointer;
  }

  .altivora-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: #ffffff;
    transition: all 0.25s ease;
  }

  .altivora-header.mobile-menu-open .altivora-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .altivora-header.mobile-menu-open .altivora-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .altivora-header.mobile-menu-open .altivora-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .altivora-menu {
    display: none;
    border-bottom: none;
    padding-top: 0;
  }

  .altivora-header.mobile-menu-open .altivora-menu-left,
  .altivora-header.mobile-menu-open .altivora-menu-right {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    background: rgba(0, 60, 70, 0.88);
  }

  .altivora-header.mobile-menu-open .altivora-menu-left {
    margin-top: 14px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .altivora-header.mobile-menu-open .altivora-menu-right {
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }

  .altivora-menu ul,
  .altivora-menu-left ul,
  .altivora-menu-right ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .altivora-menu li {
    border-top: 1px solid rgba(49, 198, 199, 0.25);
  }

  .altivora-menu li:first-child {
    border-top: none;
  }

  .altivora-menu a {
    display: block;
    padding: 13px 12px;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .altivora-video-page-hero {
    min-height: 520px;
    padding-top: 190px;
    padding-bottom: 70px;
  }

  .altivora-hero {
    min-height: 100svh;
    padding-top: 190px;
    padding-bottom: 90px;
  }
}
/* FIX MOBILE HEADER + HOME HERO */
@media (max-width: 900px) {

  .altivora-header {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(0, 60, 70, 0.88) 0%,
      rgba(0, 60, 70, 0.55) 70%,
      rgba(0, 60, 70, 0) 100%
    ) !important;
    z-index: 50;
  }

  .admin-bar .altivora-header {
    top: 46px;
  }

  /* Top bar πιο μαζεμένο */
  .altivora-topbar {
    height: auto;
    padding: 6px 10px;
    flex-direction: column;
    gap: 5px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid rgba(80, 230, 230, 0.45);
  }

  .altivora-top-left,
  .altivora-top-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
  }

  .altivora-langs img {
    width: 18px;
  }

  /* Header row */
  .altivora-main-menu {
    height: auto;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    padding: 10px 16px 12px;
    gap: 0;
  }

  .altivora-logo {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: center;
  }

  .altivora-logo img {
    max-width: 88px;
  }

  .altivora-menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(49, 198, 199, 0.75);
    border-radius: 10px;
    background: rgba(0, 60, 70, 0.35);
    cursor: pointer;
  }

  .altivora-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: #ffffff;
    transition: all 0.25s ease;
  }

  .altivora-header.mobile-menu-open .altivora-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .altivora-header.mobile-menu-open .altivora-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .altivora-header.mobile-menu-open .altivora-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Κρυφά τα menu μέχρι να ανοίξει το burger */
  .altivora-menu {
    display: none !important;
    border-bottom: none;
    padding-top: 0;
  }

  .altivora-header.mobile-menu-open .altivora-menu-left,
  .altivora-header.mobile-menu-open .altivora-menu-right {
    display: block !important;
    grid-column: 1 / -1;
    width: 100%;
    background: rgba(0, 60, 70, 0.94);
  }

  .altivora-header.mobile-menu-open .altivora-menu-left {
    margin-top: 12px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .altivora-header.mobile-menu-open .altivora-menu-right {
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }

  .altivora-menu ul,
  .altivora-menu-left ul,
  .altivora-menu-right ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .altivora-menu li {
    border-top: 1px solid rgba(49, 198, 199, 0.25);
  }

  .altivora-menu li:first-child {
    border-top: none;
  }

  .altivora-menu a {
    display: block;
    padding: 13px 12px;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  /* Αρχική σελίδα mobile */
  .altivora-hero {
    min-height: 100svh;
    padding-top: 160px;
    padding-bottom: 105px;
    align-items: center;
  }

  .admin-bar .altivora-hero {
    min-height: calc(100svh - 46px);
  }

  .altivora-hero-content {
    margin-bottom: 0;
    padding: 0 20px;
    transform: translateY(55px);
  }

  .altivora-hero-content h1 {
    font-size: 30px;
    line-height: 1.15;
    padding: 0;
  }

  .altivora-hero-btn {
    font-size: 16px;
    padding: 10px 18px;
  }

  .altivora-wave {
    height: 90px;
  }

  /* Εσωτερικές σελίδες με video hero */
  .altivora-video-page-hero {
    min-height: 460px;
    padding-top: 165px;
    padding-bottom: 65px;
  }

  .altivora-video-page-hero h1 {
    font-size: 32px;
  }

  .altivora-video-page-hero p {
    font-size: 18px;
    line-height: 1.5;
  }
}
/* Availability date info tooltip */
.availability-label-with-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.availability-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #31c6c7;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: help;
}

.availability-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: 280px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #12383f;
  color: #ffffff;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(0, 60, 70, 0.22);
  z-index: 30;
}

.availability-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #12383f transparent transparent transparent;
}

.availability-info:hover .availability-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .availability-tooltip {
    left: auto;
    right: -10px;
    transform: none;
    width: 240px;
  }

  .availability-tooltip::after {
    left: auto;
    right: 14px;
    transform: none;
  }
}
.availability-people-note {
  display: block;
  margin-top: 7px;
  color: #31c6c7;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
/* Rental pickup locations */
.rental-pickup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 28px;
}

.rental-pickup-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(49, 198, 199, 0.08);
  border: 1px solid rgba(49, 198, 199, 0.22);
}

.rental-pickup-card strong {
  display: block;
  color: #12383f;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.rental-pickup-card p {
  margin: 0 0 12px;
}

.rental-pickup-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #31c6c7;
  font-weight: 700;
  text-decoration: none;
}

.rental-pickup-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rental-pickup-grid {
    grid-template-columns: 1fr;
  }
}

/* Align only the two small fleet card buttons */
.fleet-grid .fleet-card {
  display: flex;
  flex-direction: column;
}

.fleet-grid .fleet-card-image {
  flex: 0 0 auto;
}

.fleet-grid .fleet-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-grid .fleet-card-content .fleet-btn {
  margin-top: auto;
  align-self: flex-start;
}

h1,
h2,
h3,
h4,
.altivora-menu a,
.altivora-main-menu a,
.altivora-logo-text,
.home-hero-title,
.fleet-title,
.fleet-card h2,
.trips-page h1,
.trips-page h2,
.about-page h1,
.about-page h2,
.contact-page h1,
.contact-page h2,
.rental-page h1,
.rental-page h2,
.faq-page h1,
.faq-page h2,
.availability-page h1,
.availability-page h2,
.fleet-btn,
.trips-btn,
.contact-btn,
.rental-btn,
.faq-btn,
.availability-submit {
  font-family: 'ACBalooPaaji', Arial, sans-serif;
}

/* Windy map button */
.trip-windy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 2px solid #31c6c7;
  background: transparent;
  color: #31c6c7;
  font-family: 'ACBalooPaaji', Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
}

.trip-windy-btn:hover {
  background: #31c6c7;
  color: #ffffff;
}

/* Windy modal */
.windy-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.windy-modal.is-open {
  display: flex;
}

.windy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 35, 42, 0.72);
}

.windy-modal-box {
  position: relative;
  width: min(1100px, 100%);
  height: min(720px, 82vh);
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.windy-modal-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.windy-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #12383f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .windy-modal {
    padding: 14px;
  }

  .windy-modal-box {
    height: 78vh;
    border-radius: 16px;
  }
}

/* Better Windy button on destinations */
.trips-page .trip-windy-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 185px;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 24px !important;
  border: 2px solid #31c6c7 !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #31c6c7 !important;
  font-family: 'ACBalooPaaji', Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(49, 198, 199, 0.12);
  transition: all .22s ease;
}

.trips-page .trip-windy-btn:hover {
  background: #31c6c7 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(49, 198, 199, 0.22);
}

.trips-page .trip-windy-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(49, 198, 199, 0.22);
}

@media (max-width: 768px) {
  .trips-page .trip-windy-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Μικρό ύψος εικόνας για τις 2 κάτω κάρτες */
.fleet-grid .fleet-card .fleet-card-slider {
    height: 300px;
    min-height: 300;
    max-height: 300px;
    flex: 0 0 300px;
}

.fleet-grid .fleet-card .fleet-card-slider .fleet-swiper,
.fleet-grid .fleet-card .fleet-card-slider .swiper-wrapper,
.fleet-grid .fleet-card .fleet-card-slider .swiper-slide {
    height: 100%;
}

.fleet-grid .fleet-card .fleet-card-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Mobile */
@media (max-width: 768px) {

    .fleet-grid .fleet-card .fleet-card-slider {
        height: 250px;
        min-height: 250px;
        max-height: 250px;
        flex-basis: 250px;
    }

}