/* Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #eaffef;
  background: linear-gradient(135deg, #001d0e, #012f1b, #003c25);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glassmorphism Panels */
.glass {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 30px rgba(0, 255, 128, 0.1);
  border-radius: 16px;
}

/* Header - Reduced height */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  width: 45px;
  border-radius: 50%;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: #a9ffb9;
  margin: 0;
  font-size: 1.2rem;
}

.tagline {
  font-size: 0.8rem;
  color: #90ffca;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #c6ffe1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #67ff9f;
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('hero-bg.jpg') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  padding: 2rem;
  color: #eafff2;
}

.hero h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.scroll-arrow {
  font-size: 2rem;
  color: #77ffaa;
  margin-top: 2rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, #2fff91, #00ffaa);
  color: #001a0f;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px #00ff88;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #33ffaa;
}

/* Sections */
.content-section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  color: #7dffc2;
}

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

.service-card, .project-card {
  padding: 1.5rem;
  transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover, .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 255, 128, 0.2);
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 500px;
  margin: 2rem auto;
}

.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.05);
  color: #d8ffe7;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem;
  font-family: inherit;
}

/* Map */
.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,255,128,0.2);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.2rem;
  background: rgba(0,0,0,0.4);
  font-size: 0.9rem;
  color: #aaffc1;
}

/* Floating Leaves */
.leaf {
  position: fixed;
  top: -10px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #6eff9d 0%, #0aff72 70%);
  border-radius: 50%;
  opacity: 0.7;
  animation: fall linear infinite;
}

@keyframes fall {
  from { transform: translateY(-10vh) rotate(0deg); }
  to { transform: translateY(100vh) rotate(360deg); }
}
