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

:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-cyan: #00f0ff;
  --accent-purple: #9d00ff;
  --accent-pink: #ff007f;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .brand {
  font-family: 'Outfit', sans-serif;
}

/* Typography */
h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

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

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

/* Background Blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}
.blob-1 {
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--accent-purple);
}
.blob-2 {
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.7rem 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo img {
  /* Size increased to 2.4rem (20% larger than 2rem) */
  height: 2.4rem;
  object-fit: contain;
}

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

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6rem;
}

.hero-content {
  max-width: 800px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(157, 0, 255, 0.3);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Animation Classes (triggered by JS) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sub Tabs for Legal Page */
.sub-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.sub-tabs-left {
  display: flex;
  gap: 3rem;
}

.lang-select-wrapper {
  position: relative;
  display: inline-block;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(0, 240, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 2.5rem 0.5rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.1);
}

.lang-select option {
  background: #111;
  color: #fff;
}

.lang-select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--accent-cyan);
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.sub-tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.sub-tab-btn:hover {
  color: var(--text-primary);
}

.sub-tab-btn.active {
  color: var(--accent-cyan);
}

.sub-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}


@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .nav-links { display: none; /* simple mobile fallback */ }
}
