/* Global Styles */
:root {
  --primary-color: #f0c21d;
  --dark-bg: #0c1512;
  --dark-green: #0f1f14;
  --text-light: #ffffff;
  --text-gold: #f0c21d;
  --lime-color: #f1e8aa;
  --section-padding: 60px 0;
}
/* @import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400..700;1,400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,wght@0,100..900;1,100..900&display=swap"); */

body {
  font-family: "Cormorant Garamond", serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0C1512;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-light);
}

p {
  margin-bottom: 20px;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--lime-color);
  color: var(--dark-bg);
  border: none;
  padding: 0 30px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  line-height: 44px;
}

.btn-primary:hover {
  background-color: #b08d4a;
  transform: translateY(-2px);
}

/* Light Layers */
.extra-layers {
  pointer-events: none;
}
.extra-layers span:nth-child(1) {
  position: absolute;
  width: 60vw;
  aspect-ratio: 1;
  left: -20%;
  top: -20%;
  background-image: url("images/light-layer-big.webp");
  background-repeat: no-repeat;
  background-position: top;
}
.extra-layers span:nth-child(2) {
}

/* Header/Navigation */
header {
  padding: 32px 0;
  position: static;
  width: 100%;
  z-index: 100;
  top: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.logo h1 {
  color: var(--text-gold);
  font-size: 28px;
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li ~ li {
  margin-left: 25px;
}

nav ul li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  display: inline-block;
}


.heading-2 {
  font-size: 70px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--lime-color);
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
}

.heading-2 span {
  font-weight: 500;
  font-size: 79px;
  line-height: 96px;
  letter-spacing: -0.28px;
  color: #ffffff;
}
/* Hero Section */

.grid {
  display: grid;
  align-content: center;
  justify-content: center;
  max-width: 100vw;
  row-gap: 0;
  grid-template-columns: auto auto auto auto auto;
  grid-template-rows: 100vh 10vh 10vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; /* Simplified */
  /* grid-template-rows: auto; */
  /* min-height: 100vh; */
}
.scroll{height: 100%;display: flex;align-items: center;justify-content: center;border-right: 1px solid #fff;width: 100px;}
.scroll:hover{
  background: rgba(96, 96, 96, 0.2);
  backdrop-filter: blur(30px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll span{
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 20px;
  font-weight: 600;
  color: var(--lime-color);
  display: block;
  white-space: nowrap;
}
.left {
  margin-right: -90px;
  display: flex;
  align-items: center;
  justify-content: end;
  grid-row: 1/1;
  grid-column: 1/3;
  z-index: 1;
  background: rgba(96, 96, 96, 0.2);
  backdrop-filter: blur(30px);
  border-radius: 0px 500px 500px 0px;
  min-height: 400px;
  height: 70vh;
  max-height: 490px;
}
.cacimg {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 4/6;
  grid-row: 1/3;
  background: linear-gradient(to left, #23524a, #c6e7b5);
  border-radius: 1050px 0 0 1050px;
  overflow: hidden;
  grid-column: 3/6;
  grid-row: 1/4;
  height: 80vh;
  /* max-height: 600px; */
}
.cacimg img {
  height: 100%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: 0px 40%;
}
.hero {
  /* background-color: var(--dark-green); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {padding-right: 120px;padding-left: 50px;width: 360px;box-sizing: content-box;}

.hero-text h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

.hero-text h1 {
  font-size: 90px;
  color: var(--lime-color);
  margin-bottom: 10px;
}

.hero-text p {
  margin-bottom: 30px;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  max-width: 350px;
}

.hero-image {
  width: 50%;
  height: 500px;
  background-image: url("images/hero-img.webp");
  background-size: cover;
  background-position: center;
  border-radius: 50% 0 0 50%;
}

/* How It Works Section */
.how-it-works {
  padding: var(--section-padding);
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background-color: var(--dark-bg);
}

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

.service-card {
  /* Frame 1597882516 */

  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  background: rgba(96, 96, 96, 0.1);
  backdrop-filter: blur(30px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 16px;
  padding-bottom: 20px;
}

.service-image {
  aspect-ratio: 251/283;
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
}
.service-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
  font-weight: 500;
}

.service-card p {
  font-size: 16px;
  padding: 0 20px;
  font-family: "DM Sans", sans-serif;
  color: #9ea2a0;
  margin: 0;
}

/* Service Images */
.trips {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Trips");
}

.hotels {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Hotels");
}

.cars {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Cars");
}

.dining {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Dining");
}

.flights {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Flights");
}

.events {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Events");
}

.private-jets {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Private+Jets");
}

.yachts {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Yachts");
}

.cruises {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Cruises");
}

.villas {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Villas");
}

.beach-lounges {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Beach+Lounges");
}

.tailored-excursions {
  background-image: url("https://placehold.co/600x400/0a0a0a/c9a55c?text=Tailored+Excursions");
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--dark-bg);
}

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

.testimonial-card {
  background: rgba(96, 96, 96, 0.2);
  backdrop-filter: blur(30px);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  color: #9EA2A0;
}

.testimonial-author {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--lime-color);
}

/* App Showcase Section */
.app-showcase {
  padding: var(--section-padding);
  background: rgb(96 96 96 / 10%);
  border-radius: 100px;
  text-align: center;
}
.app-showcase h2{
  margin-bottom: 20px;
}
.app-showcase p {
  margin-bottom: 40px;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
}

.app-screens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.screen {
  height: 340px;
  aspect-ratio: 198/394;
  border-radius: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.screen1 {
  background-image: url("images/app/screen1.png");
}

.screen2 {
  background-image: url("images/app/screen2.png");
  height: 394px;
}

.screen3 {
  background-image: url("images/app/screen3.png");
  height: 444px;
}

.screen4 {
  background-image: url("images/app/screen4.png");
  height: 394px;
}

.screen5 {
  background-image: url("images/app/screen5.png");
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
  /* background-color: #0C1512; */
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* margin-bottom: 20px; */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
}

.faq-icon {
  font-size: 24px;
  color: var(--text-gold);
}
.faq-answer {
  transition: max-height 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}
.faq-answer.open {
  max-height: 200px; /* adjust based on content */
  opacity: 1;
}

/* Footer */
footer {
  padding: 50px 0 0;
  background-color: rgb(96 96 96 / 10%);
  border-radius: 48px 48px 0 0;
}
footer .container{display: flex;flex-direction: column;align-items: center;gap: 16px;}

.footer-links ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links ul li {
  margin: 0 15px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  width: 100%;
  margin-top: 14px;
}
.footer-bottom p{margin:0;font-weight: 600;}
/* Responsive Styles */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    width: 100%;
    padding-right: 0;
  }

  .hero-text {
    margin-bottom: 50px;
    text-align: center;
    padding: 0 32px;
    box-sizing: border-box;
    width: 100%;
  }

  .hero-image {
    border-radius: 50%;
    height: 400px;
  }

  .steps {
    flex-direction: column;
  }

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

  .app-screens {
    flex-wrap: wrap;
  }

  .screen {
    width: 180px;
    height: 380px;
  }

  .screen2,
  .screen3,
  .screen4 {
    height: 380px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    /* padding: 0; */
    margin: 0 auto;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p:first-child {
    margin-bottom: 10px;
  }
  .grid{display: flex;flex-direction: column;position: relative;padding-top: 70px;padding-bottom: 20px;}
  .grid .cacimg{position: absolute;right: 0;border-radius: 100px 0 0 100px;backdrop-filter: blur(14px);height: auto;}
  .hero-text h1{font-size: 50px;}
  .hero-text h2{font-size: 32px;}
  .grid .scroll{width: 50px;display: none;}
  .grid .scroll span{font-size: 18px;}
  .grid .left{margin: 0;border-radius: 0px 100px 100px 0px;backdrop-filter: blur(14px);}
  .heading-2{font-size: 42px;}
  .heading-2 span{font-size: 54px;}
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .app-screens {
    justify-content: center;
  }

  .screen {
    width: 70%;
    height: 450px;
    margin-bottom: 20px;
  }

  .screen2,
  .screen3,
  .screen4,
  .screen5 {
    display: none;
  }
}


/* Add in styles.css or inside <style> tag */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 1s ease-out forwards;
}


/* In your styles.css or inside <style> tag */

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInLeft {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScaleRight {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 2s ease-out forwards;
}

.animate-fade-in-scale-right {
  animation: fadeInScaleRight 1s ease-out forwards;
  animation-delay: 0.3s; /* slight delay after text */
}


.privacy-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 0;
  color: #9EA2A0;
  font-family: "DM Sans", sans-serif;
}
.privacy-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lime-color);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}
.privacy-subtitle {
  color: var(--color-grey);
  margin-bottom: 32px;
  text-align: center;
}
.privacy-section h2,
.privacy-section h3 {
  color: var(--lime-color);
  font-family: "Cormorant Garamond", serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.privacy-section h2{
  font-size: 20px;
}
.privacy-section p{
  color: #9EA2A0;
}
.privacy-section ul {
  list-style: disc;
  margin-bottom: 1.5rem;
  padding-left: 20px;
}
.privacy-section a {
  color: var(--lime-color);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .privacy-container {
    padding: 30px 10px;
  }
  .privacy-title {
    font-size: 2rem;
  }
}
.footer-style{
  background: rgba(96, 96, 96, 0.1);
  backdrop-filter: blur(30px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 48px 48px 0px 0px;
}

