:root {
  --bg-dark: #0f1f2e;
  --bg-darker: #08121a;
  --accent-gold: #f4c025;
  --text-light: #ffffff;
  --text-muted: #a0aab2;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

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

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: var(--accent-gold);
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(rgba(15, 31, 46, 0.4), rgba(15, 31, 46, 0.8)), url('https://images.unsplash.com/photo-1596484393933-28771485c2c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  background-attachment: fixed; /* Parallax effect */
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--bg-darker);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(244, 192, 37, 0.3);
}

/* Floating Glass Cards */
.hero-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 280px;
  transform: translateX(50px);
  opacity: 0;
  animation: slideIn 1s forwards;
}

.glass-card img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.glass-info {
  flex: 1;
}

.glass-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.stars {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* Shape Divider */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: var(--bg-dark);
}

/* Sections General */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.section-title span {
  color: var(--accent-gold);
}

/* Stats Section */
.stats-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.stats-left, .stats-right {
  flex: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-item h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

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

.stats-desc {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.learn-more {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.learn-more i {
  transition: transform 0.3s;
}

.learn-more:hover i {
  transform: translateX(5px);
}

/* Asymmetrical Image Stack */
.image-stack {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-img {
  position: absolute;
  width: 220px;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  border: 4px solid var(--bg-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.stack-img:nth-child(1) {
  transform: rotate(-10deg) translateX(-80px);
  z-index: 1;
}

.stack-img:nth-child(2) {
  transform: translateY(-40px);
  z-index: 2;
}

.stack-img:nth-child(3) {
  transform: rotate(10deg) translateX(80px);
  z-index: 3;
}

.stack-img:hover {
  transform: scale(1.05) translateY(-20px);
  z-index: 4;
}

/* About Us Section */
.about-section {
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.about-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

.about-img {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 2;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 1;
  z-index: 2;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features {
  display: flex;
  gap: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(244, 192, 37, 0.1);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.feature p {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Destinations Tabs */
.destinations-section {
  position: relative;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  position: relative;
}

.tab:hover {
  color: var(--text-light);
}

.tab.active {
  color: var(--accent-gold);
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 3px 3px 0 0;
}

.tabs-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.tab-pane.active {
  display: block;
}

.tab-pane img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tab-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.tab-pane p {
  color: var(--text-muted);
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .stats-section, .about-section { flex-direction: column; }
  .hero-cards { display: none; }
  .stack-img { width: 180px; height: 260px; }
  .features { flex-wrap: wrap; justify-content: center; }
  .tabs { flex-wrap: wrap; gap: 1rem; }
}
