* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a8ff60;
  --secondary: #00b09b;
  --accent: #96c93d;
  --dark: #0a0a0a;
  --darker: #000;
  --light: #f8f9fa;
  --gray: #bbb;
  --card-bg: rgba(10, 10, 10, 0.7);
  --card-border: rgba(168, 255, 96, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

/* ANIMATED BACKGROUND */
.animated-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* PARTICLES */
.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
  0% { 
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { 
    transform: translateY(-100px) translateX(var(--drift));
    opacity: 0;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(168, 255, 96, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.9);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--light) !important;
  margin: 0 10px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* HERO SECTION */
.contact-hero {
  padding: 140px 20px 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* CONTACT SECTION */
.contact-section {
  padding: 0 20px 80px;
  position: relative;
  z-index: 1;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transition: transform 0.3s;
}

.info-card:hover {
  border-color: rgba(168, 255, 96, 0.3);
  transform: translateX(10px);
}

.info-card:hover::before {
  transform: scaleY(1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.3);
}

.info-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-card p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

.info-card a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: var(--primary);
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(168, 255, 96, 0.1);
  border: 1px solid rgba(168, 255, 96, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(168, 255, 96, 0.3);
}

/* CONTACT FORM */
.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168,255,96,0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-form-wrapper:hover::before {
  opacity: 1;
}

.contact-form-wrapper h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-form-wrapper > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  color: var(--light);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 255, 96, 0.2);
  border-radius: 12px;
  color: var(--light);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(168, 255, 96, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.form-control::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 176, 155, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* MAP SECTION */
.map-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  padding: 40px;
}

.map-container h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(168, 255, 96, 0.2);
  height: 400px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.1rem;
}

/* SUCCESS MESSAGE */
.success-message {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.4);
  z-index: 10000;
  display: none;
  align-items: center;
  gap: 15px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.success-message i {
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .map-wrapper {
    height: 300px;
  }
}