/* Animated Background Styles */
.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: linear-gradient(135deg,
      #87ceeb 0%,
      #1e90ff 25%,
      #0066cc 50%,
      #1e90ff 75%,
      #4169e1 100%);
}

/* Dotted Grid Background */
.dotted-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.8) 1px, transparent 0),
    radial-gradient(circle at 20px 20px, rgba(135, 206, 235, 0.6) 1px, transparent 0);
  background-size: 40px 40px, 80px 80px;
  background-position: 0 0, 0 0;
}

.blur-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.blur-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #87ceeb 0%, rgba(135, 206, 235, 0.3) 40%, transparent 70%);
  top: -150px;
  left: -150px;
  animation: float1 25s infinite ease-in-out;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0066cc 0%, rgba(0, 102, 204, 0.4) 40%, transparent 70%);
  top: 40%;
  right: -200px;
  animation: float2 30s infinite ease-in-out;
  animation-delay: -8s;
}

.shape-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4169e1 0%, rgba(65, 105, 225, 0.3) 40%, transparent 70%);
  bottom: -250px;
  left: 15%;
  animation: float3 35s infinite ease-in-out;
  animation-delay: -15s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #6495ed 0%, rgba(100, 149, 237, 0.4) 40%, transparent 70%);
  top: 15%;
  left: 45%;
  animation: float4 28s infinite ease-in-out;
  animation-delay: -5s;
}

.shape-5 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #b0e0e6 0%, rgba(176, 224, 230, 0.3) 40%, transparent 70%);
  bottom: 5%;
  right: 5%;
  animation: float5 32s infinite ease-in-out;
  animation-delay: -12s;
}

.shape-6 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #1e90ff 0%, rgba(30, 144, 255, 0.5) 40%, transparent 70%);
  top: 60%;
  left: 10%;
  animation: float6 26s infinite ease-in-out;
  animation-delay: -20s;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(40px, -50px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translate(-30px, 30px) rotate(180deg) scale(0.95);
  }

  75% {
    transform: translate(60px, -20px) rotate(270deg) scale(1.05);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(-50px, 40px) rotate(120deg) scale(1.08);
  }

  66% {
    transform: translate(30px, -30px) rotate(240deg) scale(0.92);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(30px, -40px) rotate(72deg) scale(1.06);
  }

  40% {
    transform: translate(-40px, 20px) rotate(144deg) scale(0.94);
  }

  60% {
    transform: translate(50px, 30px) rotate(216deg) scale(1.02);
  }

  80% {
    transform: translate(-20px, -50px) rotate(288deg) scale(0.98);
  }
}

@keyframes float4 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  30% {
    transform: translate(-35px, -45px) rotate(108deg) scale(1.04);
  }

  70% {
    transform: translate(45px, 25px) rotate(252deg) scale(0.96);
  }
}

@keyframes float5 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(25px, 45px) rotate(90deg) scale(0.93);
  }

  50% {
    transform: translate(-45px, -25px) rotate(180deg) scale(1.07);
  }

  75% {
    transform: translate(35px, -35px) rotate(270deg) scale(1.01);
  }
}

@keyframes float6 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  40% {
    transform: translate(-30px, 35px) rotate(144deg) scale(1.03);
  }

  80% {
    transform: translate(40px, -40px) rotate(288deg) scale(0.97);
  }
}

.section-header {
  font-size: 2.5rem;
  /* large text */
  font-weight: 700;
  /* bold */
  text-align: center;
  /* center it */
  margin-bottom: 30px;
  /* space below */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  /* subtle shadow like Contact */
}

/* Headings: Poppins 600 */
h1,
h2,
h3,
.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #0A1F33;
}

/* Paragraphs & body: Lato 400 */
body,
p,
a,
li,
input,
textarea,
button {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background-color: transparent;
  /* CHANGE TO THIS */
}

.hero {
  background-color: #1e90ff;
  /* flat kyanite blue */
  color: white;
  text-align: center;
  padding: 100px 20px;
}



/* Navbar */

/* Navbar */
nav {
  text-decoration: none;
  position: fixed;
  top: 35px;
  left: 50%;
  width: 1050px;
  height: 85px;
  transform: translateX(-50%);
  background: #003566;
  border-radius: 40px;
  padding: 0 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar Logo */
.logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  /* prevents logo from shrinking */
}

/* Nav links container - this centers them in remaining space */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  /* takes remaining space after logo */
  margin-left: -200px;
  /* compensates for logo width to truly center */
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
  white-space: nowrap;
  /* prevents text wrapping */
}

.nav-links a:hover {
  color: #1e90ff;
}



.home {
  background-color: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  /* stack text vertically */
  justify-content: center;
  /* center vertically */
  align-items: center;
  /* center horizontally */
  text-align: center;
  padding: 100px 20px;
  /* some breathing room */
  position: relative;
  /* allow absolute positioning inside */
}

/* Content box behind text */
.content-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 50px;
  max-width: 1050px;
  width: 100%;
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(30, 144, 255, 0.3);
  /* sky-blue accent */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Hero Section Headings */
.home h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 1200;
  font-size: 3.5rem;
  /* Main title - REDUCED from 3rem */
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.home .slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* INCREASED from 10px */
  flex-wrap: nowrap;
  /* ADDED - prevents wrapping */
  white-space: nowrap;
  /* ADDED - prevents text breaking */
  font-size: 2.5rem;
  /* ADDED - specific size */
}

.slogan-img {
  width: 40px;
  /* adjust size */
  height: auto;
}

/* Paragraphs inside hero */
.home p {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  /* slightly bigger for readability */
  max-width: 700px;
  margin: 0 auto 10px auto;
}


.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ddd;
  color: #0A1F33;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0A1F33;
}

/* Bottom container */
.home-bottom {
  position: absolute;
  bottom: 30px;
  /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Example object */
.custom-object {
  text-align: center;
  margin-bottom: 0px;
  /* no fixed width */
}

.custom-object a {
  text-align: center;
  text-decoration: none;
  margin: 0;
  /* reset default browser margin */
  margin-bottom: 8px;
  /* add custom spacing */
  white-space: nowrap;

  /* Box styles */
  background: #0A1F33;
  /* same as navbar background */
  border: 2px solid black;
  /* same border as navbar */
  border-radius: 20px;
  /* rounded edges */
  padding: 8px 20px;
  /* space around text */
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  /* white text */
  display: inline-block;
  /* keeps box tight around text */
}

/* Arrow */
.arrow-down {
  align-items: center;
  display: inline-block;
  font-size: 48px;
  color: #fff;
  text-decoration: none;
  animation: bounce 1.5s infinite;
  margin-bottom: 0px;
}

/* Bounce animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}

/* Section backgrounds */
.about,
.services,
.contact {
  justify-content: flex-start;
  /* pushes content to the top */
  padding-top: 200px;
  /* adjust spacing from top */
  background-color: transparent;
}

/* Sections */

section {
  min-height: 100vh;
  /* full screen height */
  display: flex;
  flex-direction: column;
  /* stack content vertically */
  justify-content: center;
  /* center vertically */
  align-items: center;
  /* center horizontally */
  text-align: center;
  padding: 80px 20px;
  position: relative;
  gap: 20px;
  /* space between elements */
}

section .content {
  display: flex;
  flex-direction: column;
  /* stack vertically */
  align-items: center;
  /* center horizontally */
  gap: 20px;
  /* spacing between elements */
  max-width: 800px;
  /* prevent text from stretching too wide */
}

/* subtle line between sections */
section:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  /* soft gray line */
}



/* Header with title centered and logo offset */
.about-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 50px;
}

/* <- This closing brace was missing */

.about-header .section-header {
  grid-column: 2;
  font-size: 2.5rem;
  margin: 0;
}

.company-logo {
  grid-column: 3;
  justify-self: start;
  margin-left: 50px;
  width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  filter: drop-shadow(0 8px 20px rgba(10, 31, 51, 0.2));
  transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
}



/* Content layout */
.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  flex-wrap: wrap;
  position: relative;
  font-weight: 400;
}

/* Constrain text to left half, ending before middle */
.about-text {
  flex: none;
  /* Remove flex grow */
  width: 50%;
  /* Take up left half */
  max-width: none;
  /* Remove max-width constraint */
  min-width: 300px;
  text-align: left;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease-out;
  margin-right: auto;
  padding-right: 30px;
  /* Space from center line */
}

.about-text.show {
  opacity: 1;
  transform: translateX(0);
}

.about-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #0A1F33;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Updated Team Images Container */
.about-images {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 600px;
  /* Set fixed height to contain both members */
}

/* Filip's image - positioned consistently */
.person:first-child {
  position: absolute;
  top: 0;
  left: calc(50% + 40px);
  /* Simplified positioning */
  width: 280px;
  /* Fixed width container */
  text-align: center;
}

/* Stepan's image - positioned relative to Filip with consistent spacing */
.person:last-child {
  position: absolute;
  top: 0;
  /* Same top position as Filip */
  left: calc(50% + 360px);
  /* Increased from 320px for more space between images */
  width: 280px;
  /* Increased to match image width */
  text-align: center;
}

/* Image styling remains the same */
.person-img {
  width: 250px;
  height: 250px;
  /* Fixed height for consistency */
  border-radius: 18px;
  object-fit: cover;
  filter: drop-shadow(0 8px 20px rgba(10, 31, 51, 0.2));
  transition: transform 0.3s ease;
  display: block;
  /* Ensures proper spacing */
  margin: 0 auto;
  /* Centers image in container */
}

.person-img:hover {
  transform: scale(1.05);
}

/* Updated text styling for better readability */
.person-name {
  margin-top: 15px;
  /* Increased spacing from image */
  font-size: 1.3rem;
  font-weight: 600;
  color: #0A1F33;
  line-height: 1.4;
  text-align: center;
  /* Center all text below images */
  max-width: 280px;
  /* Constrain text width to align with image */
  margin-left: auto;
  margin-right: auto;
}

/* Style for the title (name + role) */
.person-name:first-of-type {
  font-weight: 600;
  /* Make the name/role bold */
  margin-bottom: 8px;
}

/* Style for the description text */
.person-name:not(:first-of-type) {
  font-size: 1.1rem;
  /* Increased from 0.95rem */
  font-weight: 400;
  opacity: 0.8;
  /* Subtle transparency for hierarchy */
}



/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-text p {
    text-align: center;
  }

  .company-logo {
    width: 150px;
  }
}

.about .why-us {
  width: 100%;
  max-width: 1200px;
}

.reasons-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: nowrap;
  /* prevents wrapping to new line */
  align-items: stretch;
  /* makes all boxes same height */
}

.reason-box {
  background: linear-gradient(145deg, #ffffff, #f1f9fb);
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 40px 30px;
  flex: 1;
  max-width: 350px;
  min-height: 320px;
  text-align: center;
  color: #0A1F33;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* For smaller screens, allow wrapping */
@media (max-width: 1200px) {
  .reasons-boxes {
    flex-wrap: wrap;
  }

  .reason-box {
    flex: 0 1 300px;
    /* flexible width on smaller screens */
  }
}

@media (max-width: 768px) {
  .reasons-boxes {
    flex-direction: column;
    align-items: center;
  }
}

/* Enhanced hover effect */
.reason-box:hover {
  transform: translateY(-8px) scale(1.02);
  /* slight scale + lift */
  box-shadow: 0 15px 40px rgba(30, 144, 255, 0.3);
  /* glowing shadow */
  border-color: #00C4CC;
  /* change border color on hover */
}

/* Add subtle shine effect */
.reason-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.reason-box:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.box-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.reason-box:hover .box-icon {
  transform: scale(1.05);
  /* subtle image zoom on hover */
}

.reason-box h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #0A1F33;
  margin-bottom: 15px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.reason-box p {
  font-family: "Lato", sans-serif;
  color: #6c757d;
  line-height: 1.6;
  font-size: 1rem;
}




/* Services */

/* Alternative approach - use flexbox for better centering control */

.services-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.service h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  /* natural gap under heading */
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-box {
  background: linear-gradient(145deg, #ffffff, #f9f9ff);
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 30px;
  width: 450px;
  min-height: 180px;
  text-align: left;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Better easing */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  /* Changed from center */
  gap: 25px;
  cursor: pointer;
  /* Added cursor */
}

/* Horizontal expansion on hover */
.service-box:hover {
  width: 800px;
  /* Increased expansion */
  min-height: 320px;
  /* Added min-height for content */
  transform: translateY(-8px);
  /* More lift */
  box-shadow: 0 20px 60px rgba(30, 144, 255, 0.25);
  /* Enhanced shadow */
  border-color: #1e90ff;
  z-index: 10;
}

/* NEW: Added animated top border */
.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e90ff, #00C4CC);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.service-box:hover::before {
  transform: scaleX(1);
}

/* NEW: Better content structure */
.service-icon-container {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-header {
  margin-bottom: 15px;
}

.service-box .brief-description {
  font-family: "Lato", sans-serif;
  color: #6c757d;
  line-height: 1.5;
  font-size: 1rem;
}


/* ENHANCED: Better expanded content animation */
.expanded-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Better easing */
  margin-top: 0;
}

.service-box:hover .expanded-content {
  opacity: 1;
  max-height: 400px;
  /* Increased for more content */
  margin-top: 20px;
}

/* NEW: Added styles for expanded content elements */
.expanded-content h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #0A1F33;
  font-size: 1.1rem;
  margin-bottom: 12px;
  border-left: 3px solid #1e90ff;
  padding-left: 12px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.benefits-list li {
  font-family: "Lato", sans-serif;
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.benefits-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #1e90ff;
  font-weight: bold;
}

.cta-text {
  font-family: "Lato", sans-serif;
  color: #0A1F33;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

/* Make all SVGs uniform regardless of their original viewBox */
.service-box svg {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 20px auto;
  display: block;
}

.service-box:hover .service-icon {
  transform: scale(1.1);
}

.service-box h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #0A1F33;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-box p {
  font-family: "Lato", sans-serif;
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



/* Contact */

.contact {
  min-height: 90vh;
  /* slightly smaller than full screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* centers vertically */
  align-items: center;
  /* centers horizontally */
  padding: 60px 20px;
  /* natural spacing */
  background: transparent;
  position: relative;
}

.contact {
  font-size: 1.2rem;
  font-weight: 400;
}

.contact h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  /* natural gap under heading */
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact form {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background: #0A1F33;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: beige;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0A1F33;
  color: #fff;
  margin-top: 40px;
}

.footer p {
  font-size: 1.3rem;
  font-weight: 800;
}



/* Active navbar link */
.nav-links a.active {
  color: #00C4CC;
  font-weight: bold;
  border-bottom: 2px solid #1e90ff;
}




/* Book HTML */

/* Back to Home button */
.back-header {
  position: absolute;
  top: 40px;
  left: 40px;
}

.back-btn {
  position: fixed;
  background: #0A1F33;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* On hover → switch to violet */
.cta-btn:hover {
  background: #6C63FF;
  /* violet */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* Booking form container */
.booking-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 160px;
  /* natural spacing below nav */
}

/* Glassmorphic form box */
.booking-form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 2px solid #028090;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Inputs, selects, textarea */
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.4);
}

/* Submit button */
.booking-form .cta-btn {
  align-self: center;
  background: #0A1F33;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form .cta-btn:hover {
  background: #006767;
}