/* CleanLeadsNetwork modern style */

/* Root color variables */
:root {
  --primary-color: #009688;
  --secondary-color: #00796B;
  --light-bg: #f7f8fa;
  --dark-text: #333333;
  --muted-text: #555555;
  --card-bg: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Global styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.8em;
  color: var(--primary-color);
}

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

nav li {
  margin-left: 25px;
}

nav a {
  font-weight: 500;
  color: var(--dark-text);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn.primary:hover {
  background-color: var(--secondary-color);
}

.btn.secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn.secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Hero Section */
.hero {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 2.4em;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.3;
  color: var(--dark-text);
}

.hero-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--muted-text);
}

.hero-text .btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

/* Features Section */
.features {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: 600;
}

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

.feature-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3em;
  color: var(--dark-text);
}

.feature-card p {
  color: var(--muted-text);
  font-size: 0.95em;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: 600;
}

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

.testimonial-card {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--muted-text);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-size: 3em;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial-card span {
  display: block;
  margin-top: 15px;
  font-weight: 500;
  color: var(--primary-color);
}

/* Pricing Section */
.pricing {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
}

.pricing p {
  text-align: center;
  color: var(--muted-text);
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
  color: var(--dark-text);
}

.pricing-card .price {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  color: var(--muted-text);
  font-size: 0.95em;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-card ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.pricing-card .btn {
  margin-top: auto;
}

/* Leads Section */
#leads {
  background-color: var(--light-bg);
  padding: 80px 0;
}

#leads h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: 600;
}

.lead-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.lead-item {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.2s ease;
}

.lead-item:hover {
  transform: translateY(-5px);
}

.lead-item h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.2em;
}

.lead-item .location {
  font-style: italic;
  margin-bottom: 10px;
  color: var(--muted-text);
}

.lead-item .description {
  margin-bottom: 10px;
  color: var(--muted-text);
  font-size: 0.95em;
  line-height: 1.5;
}

.lead-item .posted-date {
  font-size: 0.85em;
  color: #888;
}

/* Footer */
footer {
  background-color: #112b32;
  color: #ffffff;
  padding: 40px 0;
}

footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

footer h3 {
  margin-top: 0;
  color: #ffffff;
}

footer p {
  margin: 0 0 10px;
  color: #a9c0c3;
  font-size: 0.9em;
}

footer a {
  color: #80cbc4;
  font-size: 0.9em;
}

footer a:hover {
  text-decoration: underline;
}

footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.85em;
  color: #7da4a7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text, .hero-image {
    flex: 1 1 100%;
  }
  nav ul {
    display: none;
  }
}

/* Sample Leads Table Section */
.sample-leads {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.sample-leads h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2em;
  font-weight: 600;
}

.sample-leads .sample-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted-text);
}

.table-wrapper {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.lead-table thead {
  background-color: var(--primary-color);
  color: #ffffff;
}

.lead-table th,
.lead-table td {
  padding: 12px 15px;
  font-size: 0.95em;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.lead-table tbody tr:nth-child(even) {
  background-color: var(--light-bg);
}

.cta-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* Consulting page custom styles */
.badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75em;
  margin-bottom: 10px;
}

.list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.form {
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid #e5e5e5;
  box-shadow: var(--box-shadow);
}

.input {
  width: 100%;
  padding: 12px;
  border-radius: var(--border-radius);
  border: 1px solid #e5e5e5;
  margin-bottom: 12px;
}

select.input {
  appearance: none;
}