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

:root {
  --green-900: #0B2B1A;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-300: #95D5B2;
  --green-100: #D8F3DC;
  --orange-500: #F77F00;
  --orange-400: #FCBF49;
  
  --text-main: #FFFFFF;
  --text-muted: #D8F3DC;
  --text-dark: #1B4332;
  
  --bg-dark: #1B4332;
  --bg-gradient: linear-gradient(135deg, #0B2B1A 0%, #1B4332 50%, #2D6A4F 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--orange-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--orange-500);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 43, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--orange-400);
}

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

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--orange-400);
}

.btn-primary {
  background-color: var(--orange-500);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 127, 0, 0.3);
}

.btn-primary:hover {
  background-color: #e67600;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--orange-400);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

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

.playstore-badge {
  height: 60px;
  transition: transform 0.3s ease;
  opacity: 0.8;
  cursor: not-allowed;
}
.playstore-badge.active {
  opacity: 1;
  cursor: pointer;
}
.playstore-badge.active:hover {
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
  border: 4px solid var(--green-600);
}

.hero-image:hover img {
  transform: rotate(0deg) scale(1.02);
}

.blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
}
.blob-1 {
  background: var(--green-500);
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  opacity: 0.5;
}
.blob-2 {
  background: var(--orange-500);
  width: 250px;
  height: 250px;
  bottom: -50px;
  right: -50px;
  opacity: 0.3;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: rgba(11, 43, 26, 0.4);
}

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

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

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(247, 127, 0, 0.2);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Legal Pages (Privacy Policy / Terms) */
.legal-page {
  padding: 160px 0 100px;
}

.legal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--orange-400);
}

.legal-content p.last-updated {
  color: var(--green-300);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
}

.legal-content p, .legal-content ul {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--green-900);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--orange-400);
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  
  .badges {
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 300px;
    transform: rotate(0);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--green-900);
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
}
