@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-color: #070707;
  --surface-color: #121212;
  --primary-color: #d4af37; /* Luxury Gold */
  --primary-hover: #f1c40f;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

nav.nav-solid {
  background: #070707;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 102;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.hamburger {
  display: none !important;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 102;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary-color); }

.btn-primary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-solid {
  background: var(--primary-color);
  color: var(--bg-color);
  border: 1px solid var(--primary-color);
  padding: 1.2rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  border-radius: 2px;
}

.btn-solid:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: subtleZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.6) 50%, rgba(7, 7, 7, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 750px;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* SUBPAGE HEADER */
.page-header {
  padding: 12rem 5% 5rem;
  background: linear-gradient(to bottom, #111 0%, #070707 100%);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.page-header h1 span {
  color: var(--primary-color);
  font-style: italic;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* TEXT CONTENT PAGES (Privacy, Terms) */
.text-content {
  padding: 4rem 5% 8rem;
}

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

.container h2 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.container p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* TRUST BAR */
.trust-bar {
  background: var(--surface-color);
  padding: 4rem 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  transition: var(--transition);
}

.trust-item:hover { transform: translateY(-5px); }

.trust-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.trust-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ABOUT SECTION */
.about {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image-wrapper { position: relative; }

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  transition: var(--transition);
}

.about-image:hover { transform: scale(1.02); }

.badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  animation: float 5s ease-in-out infinite;
}

/* SERVICES / DESTINATIONS */
.services {
  padding: 6rem 5% 8rem;
  background: #080808;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--primary-color);
  font-style: italic;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-15px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-img {
  height: 250px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover .card-img img { transform: scale(1.08); }

.card-content { padding: 2.5rem; }

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.card-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  cursor: pointer;
}

.card-link:hover { color: var(--primary-color); }
.card-link i { transition: transform 0.3s ease; }
.card:hover .card-link i { transform: translateX(8px); }

/* FOOTER */
footer {
  background: #040404;
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  color: #444;
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-content {
  background: #111;
  width: 90%;
  max-width: 500px;
  padding: 3rem;
  border-radius: 2px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.close-btn:hover { color: var(--primary-color); }

.modal-content h2 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: #000;
  padding: 1rem;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.submit-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* SPLASH SCREEN */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #040404;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

#splash-screen .splash-logo {
  height: 150px;
  width: auto;
  margin-bottom: 3rem;
  animation: float 4s ease-in-out infinite;
}

.btn-enter {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 1rem 4rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-enter::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-enter:hover::before { left: 0; }
.btn-enter:hover {
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes subtleZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* RESPONSIVE QUERIES */
@media (max-width: 992px) {
  .hero h1 { font-size: 4rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { height: 400px; }
  .page-header h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hamburger { display: block !important; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(4, 4, 4, 0.98);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-links.active { right: 0; }
  
  .trust-item { min-width: 100%; }
  .page-header { padding-top: 8rem; }
  .about, .services, .trust-bar, .hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 1rem; }
  
  #splash-screen .splash-logo { height: 100px; }
}
