:root {
  --primary: #FFD700;
  --primary-dark: #B8860B;
  --secondary: #DAA520;
  --bg-dark: #0A0A0A;
  --bg-card: rgba(30, 30, 30, 0.7);
  --text-main: #FFFFFF;
  --text-muted: #A0A0A0;
  --accent: #FFEC8B;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

h1 { font-size: 4.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; color: var(--primary); }

.gold-gradient-text {
  background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.8s;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 1.1s;
}

/* Buttons */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Glass Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.glass-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.step-card {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Budget Table */
.budget-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
}

.budget-table th {
  text-align: left;
  padding: 1rem 2rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.budget-row {
  background: var(--glass-bg);
  border-radius: 15px;
}

.budget-row td {
  padding: 1.5rem 2rem;
}

.budget-row td:first-child { border-radius: 15px 0 0 15px; font-weight: 600; }
.budget-row td:last-child { border-radius: 0 15px 15px 0; color: var(--primary); font-family: monospace; font-size: 1.1rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: var(--transition);
}

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

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.lang-btn.active {
  color: var(--primary);
}

.lang-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}

.partner-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 3px;
  transition: var(--transition);
  filter: grayscale(100%);
}

.partner-logo:hover {
  color: var(--primary);
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Locations Section */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.locations-grid .glass-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-container {
  height: 150px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-point {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Stats Section */
.stat-item {
  padding: 2rem;
}

.count {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  section { padding: 4rem 0; }
  .locations-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr !important; }
  
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .nav-links {
    display: none !important;
  }
  .nav-right {
    gap: 0.5rem;
  }
  .logo {
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
  }
  .lang-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}
