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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0d1b2a;
  overflow-x: hidden;
  transition: 0.35s;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrapper {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #52606d;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #11b7c3;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LANGUAGE */

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f2f5f7;
  padding: 5px;
  border-radius: 999px;
}

.lang {
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  color: #607080;
  transition: 0.3s;
}

.lang.active {
  background: white;
  color: #0d1b2a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* THEME */

.theme-toggle {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #f2f5f7;
  cursor: pointer;
  transition: 0.3s;
}

.theme-toggle:hover {
  transform: translateY(-2px);
}

/* BUTTONS */

.btn-primary {
  background: #11b7c3;
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

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

.btn-secondary {
  border: 2px solid #0d1b2a;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #0d1b2a;
  color: white;
}

/* HERO */

.hero {
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ebfbfd;
  color: #11b7c3;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #11b7c3;
}

.hero p {
  color: #5b6977;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 30px;
}

/* LAUNCH NOTE */

.launch-note {
  background: #f7fafb;
  padding: 18px;
  border-radius: 18px;
  color: #5b6977;
  border: 1px solid transparent;
}

/* GENERAL */

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* PARTNERS */

.partners {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 12s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.partner img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.partner img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PACKAGES */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  border: 1px solid #edf2f5;
  border-radius: 28px;
  padding: 40px;
  background: white;
}

.package-card.featured {
  border: 2px solid #11b7c3;
  transform: scale(1.03);
}

.popular-badge {
  display: inline-block;
  background: #11b7c3;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.package-card h2 {
  font-size: 3rem;
  margin: 25px 0;
}

.package-card ul {
  list-style: none;
}

.package-card li {
  padding: 12px 0;
  border-bottom: 1px solid #edf2f5;
}

.package-note {
  margin-top: 40px;
  text-align: center;
}

.pricing-disclaimer {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: #7b8b99;
}

/* HOUSING */

.housing {
  background: #f7fafb;
}

.housing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.housing-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 28px;
}

.housing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.housing-list div {
  background: white;
  padding: 24px;
  border-radius: 20px;
}

.housing-list p {
  color: #11b7c3;
  margin-top: 8px;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  border: 1px solid #edf2f5;
  border-radius: 24px;
  padding: 35px;
}

.step span {
  color: #11b7c3;
  font-size: 3rem;
  font-weight: 800;
}

.step h3 {
  margin: 18px 0;
}

/* FAQ */

.faq {
  background: #f7fafb;
}

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

.faq-item {
  background: white;
  padding: 35px;
  border-radius: 24px;
}

/* FOOTER */

.footer {
  background: #32383e;
  color: white;
  padding-top: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-logo img {
  width: 150px;
}

.footer p {
  color: #b7c3cf;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: #8fa0b2;
}

/* DARK MODE */

body.dark-mode {
  background: #08111d;
  color: white;
}

body.dark-mode .navbar {
  background: rgba(8,17,29,0.92);
}

body.dark-mode .nav-links a {
  color: #dce5ec;
}

body.dark-mode .language-toggle,
body.dark-mode .theme-toggle {
  background: #152233;
}

body.dark-mode .lang.active {
  background: #1d2c3d;
  color: white;
}

body.dark-mode .package-card,
body.dark-mode .faq-item,
body.dark-mode .housing-list div,
body.dark-mode .step {
  background: #111c2a;
  border-color: #1d2b3b;
}

body.dark-mode .housing,
body.dark-mode .faq {
  background: #0d1724;
}

body.dark-mode p,
body.dark-mode li {
  color: #b7c3cf;
}

body.dark-mode .launch-note {
  background: #111c2a !important;
  color: #ffffff !important;
  border: 1px solid #1d2b3b;
}

body.dark-mode .launch-note p,
body.dark-mode .launch-note span {
  color: #ffffff !important;
}

body.dark-mode .footer {
  background: #050b14;
}

body.dark-mode .partners {
  border-color: #135454;
  background: #ffffff;
}

/* MOBILE */

@media (max-width: 950px) {

  .hero-grid,
  .housing-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

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

  .hero-image img {
    height: 500px;
  }

  .hero-buttons {
    flex-direction: column;
  }

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0d1b2a;
  border-radius: 2px;
  transition: 0.3s;
}

body.dark-mode .hamburger span {
  background: white;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

body.dark-mode .mobile-menu {
  background: rgba(8,17,29,0.97);
}

.mobile-menu a {
  color: #52606d;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f5;
}

body.dark-mode .mobile-menu a {
  color: #dce5ec;
  border-color: #1d2b3b;
}

.mobile-menu .btn-primary {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 950px) {
  .hamburger {
    display: flex;
  }
  .nav-right {
    display: none;
  }
}

}