/* ===========================
 GLOBAL BRAND SYSTEM
=========================== */
:root {
  --primary: #00C46A;
  --primary-dark: #007A45;
  --text: #ffffff;
  --muted: #b8d7c9;
  --glass: rgba(255,255,255,0.06);
  --glow: rgba(0,255,149,0.25);
  --radius: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #031006, #000 85%);
  color: var(--text);
  overflow-x: hidden;
}

/* ===========================
 HEADER
=========================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.3rem 8%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav a {
  text-decoration: none;
  margin-left: 2rem;
  color: var(--text);
  font-weight: 500;
  transition: .3s;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

/* ===========================
 HERO SECTION
=========================== */
.hero {
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
  padding: 8rem 10% 5rem;
}

.hero.small {
  padding: 5rem 10% 3rem;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px var(--glow);
}

.hero p {
  margin-top: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===========================
 BUTTONS
=========================== */
.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.4rem;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  color: black;
  transition: .3s;
  box-shadow: 0 0 25px var(--glow);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  color: white;
}

/* ===========================
 SECTIONS
=========================== */
.services-section,
.contact-section {
  max-width: var(--max-width);
  margin: auto;
  padding: 4rem 10%;
  text-align: center;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  transition: .3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(0,255,149,0.05);
  border-color: var(--primary);
  box-shadow: 0 0 35px var(--glow);
}

.service-card img {
  width: 42px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px var(--glow));
}

/* ===========================
 CONTACT FORM STYLES
=========================== */
.form-wrapper {
  max-width: 620px;
  margin: auto;
  background: var(--glass);
  padding: 2.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 35px var(--glow);
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.3rem;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  border: none;
  color: white;
  font-size: 1rem;
}

form textarea {
  height: 140px;
  resize: none;
}

.submit-btn {
  width: 100%;
}

.contact-info {
  margin-top: 2rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ===========================
 FOOTER (FINAL FIX)
=========================== */
footer {
  width: 100%;
  text-align: center;
  padding: 3rem 10%;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

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

.footer-info {
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
  text-align: center;
}

footer .copyright {
  font-size: .9rem;
  opacity: .8;
}
