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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid #333;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00ff88;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  /* Added flex-direction column to stack title and button vertically */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

.company-name {
  font-size: 5rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0em;
  text-align: center;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  min-height: 60vh;
}

.section-title {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.section-content {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #cccccc;
  max-width: 800px;
}

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

.service-item {
  background-color: #111111;
  padding: 2rem;
  border: 1px solid #333;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-item p {
  color: #cccccc;
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  margin-top: 3rem;
  font-size: 1.125rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #cccccc;
}

.contact-info strong {
  color: #ffffff;
}

/* Footer */
.footer {
  background-color: #000000;
  border-top: 1px solid #333;
  padding: 2rem;
  text-align: center;
  color: #888888;
}

/* Added CTA button styles matching the gradient design */
.cta-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

input,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  background: rgba(15, 23, 42, 0.7);
  }

textarea {
  resize: vertical;
  min-height: 120px;
}

.send-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Ensure all general links in the footer are white */
.footer a {
  color: #888888;
  text-decoration: none; /* Recommended for cleaner look */
  transition: color 0.3s ease; /* Optional: adds a smooth color transition on hover */
}

/* Optional: Add a simple hover state for the new white links */
.footer a:hover {
  color: #00ff88; /* Hover color matches your neon green */
}

.footer-survey-link {
    /* Apply the gradient */
    background-image: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);

    /* Clip the background to the text boundary only */
    background-clip: text;
    -webkit-background-clip: text; /* For broader browser compatibility */

    /* Make the text transparent so the background shows through */
    color: transparent;

    /* Optional: Improves font rendering for better clarity on some browsers */
    -webkit-text-fill-color: transparent; 

    /* Optional: Text styling for visibility */
    font-weight: bold;
    text-decoration: none; /* Usually good for links */
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem; /* Space between icons */
}

.social-link {
  display: inline-flex;
  opacity: 0.9; /* Make icons slightly transparent by default */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  opacity: 1; /* Full brightness on hover */
  transform: translateY(-3px); /* Subtle lift effect like your buttons */
}

.social-link svg path {
  fill: #cccccc; /* Set to a single color that matches the body text */
}

/* ============================= */
/* Utility Class for Gradient Headings on Legal Pages */
/* ============================= */

.legal-page-container {
    max-width: 900px;
    margin: 8rem auto 4rem auto; /* Top margin accounts for the fixed navbar */
    padding: 0 2rem;
}

.gradient-heading {
    /* Uses the same neon gradient as other elements */
    background-image: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    
    /* These three lines are the magic for gradient text */
    background-clip: text;
    -webkit-background-clip: text; 
    color: transparent;
    -webkit-text-fill-color: transparent;

    /* Styling for the section title */
    font-size: 2.25rem;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.legal-text p, .legal-text ul {
    margin-bottom: 1rem;
    color: #cccccc; /* Use a slightly softer color for body text */
}

.legal-text ul {
    margin-left: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-name {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .nav-container {
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Made CTA button responsive for mobile */
  .cta-button {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}