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

:root {
  --primary: #ff6600;
  --bg-dark: #0e0e0e;
  --bg-light: #1e1e1e;
  --text-light: #f5f5f5;
  --text-muted: #cccccc;
  --font-main: 'Rubik', sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

header {
  background: var(--bg-light);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 2rem;
}

header img {
  height: 32px;
  object-fit: contain;
}

.right-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

#mainNav {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 11;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: var(--text-light);
  transition: 0.3s;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.lang-switch img {
  cursor: pointer;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.lang-switch img:hover {
  transform: scale(1.1);
}

/* Desktop Only */
.lang-desktop {
  display: flex;
}

.lang-mobile {
  display: none;
}

@media (max-width: 768px) {
  header {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  #mainNav {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    align-items: flex-end;
    width: calc(100% - 4rem);
    box-sizing: border-box;
  }

  #mainNav.active {
    display: flex;
  }

#mainNav a {
  width: 100%;
  text-align: right;
  margin-bottom: 0.05rem;   /* tighter gap between items */
  line-height: 1;        /* more compact but readable */
  padding: 0.05rem 0;      /* clean vertical spacing */
}

  #mainNav .lang-switch {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lang-desktop {
    display: none;
  }

  .lang-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .lang-mobile a {
    flex: 0 0 auto;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.85;
}

.hero .overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 1px 1px 6px #000;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: auto;
}

.cta {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta:hover {
  background: #e65c00;
}

.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.section-light {
  background-color: var(--bg-light);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: #aaa;
  text-align: center;
  margin-bottom: 2rem;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

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

.card p:last-of-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.metrics {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 3rem;
}

.metrics div h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .metrics div h3 {
    font-size: 1.25rem;
  }
}


footer {
  background: var(--bg-light);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

.swiper {
  width: 100%;
  padding-bottom: 3rem;
  margin-top: 2rem;
}

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

.swiper-slide img {
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

footer {
  background: var(--bg-light);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}