html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f8ff99 0%, #79b5ff 100%);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.center{
    left: 50%;
}

.container.narrow {
  max-width: 820px;
}

.section {
  padding: 2rem 0;
}

h1,
h2,
h3 {
  color: #111827;
}

h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.125rem;
  color: #374151;
}

.center {
  text-align: center;
}

.fab-book-now {
    font-size: 30px;
  position: fixed;
  right: 1.25rem;
  top: 1.25rem;
  z-index: 1000;
  background: linear-gradient(135deg, #66eaa8 0%, #e2f208 100%);
  color: #000000;
  padding: 0.9rem 1.25rem;
  border: black 5px solid;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(118, 75, 162, 0.35);
}

.hero {
  padding-top: 3rem;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  color: #4b5563;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.value {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.value:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.team-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 880px) {
  .team-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.team-member {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.team-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid #e5e7eb;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.role {
  color: #588b06;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#company{
    position: relative;
    width:50%;
    margin: auto;
    display: block;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 30px;
}
.company .company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .company .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer {
  padding: 2rem 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 16px;
  max-width: 540px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-close {
    font-size: x-large;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: #e5e7eb;
}

.booking-text {
  margin-top: 0.5rem;
  color: #374151;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.limitless{
    width: auto;
}
.click-gallery {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  background: rgba(0, 0, 0, 0.75);
  z-index: 3000;
  padding: 4vh 4vw;
}

.click-gallery.is-open {
  display: flex;
}

.click-gallery__img {
  max-width: 46vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.click-gallery__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  z-index: 3001;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #111827;
  border: 0;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
}
