/* Color palette and typography */
:root {
  --primary-color: #0C7B5C;
  --secondary-color: #008080;
  --accent-color: #D4AF37;
  --light-bg: #F8F9FA;
  --dark-text: #2C2C2C;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

/* Header and navigation */
header {
  background-color: #ffffff;
  padding: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
}

nav ul li a.cta-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
}

nav ul li a.cta-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 4px;
}

/* Hero section */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .buttons a {
  margin: 5px;
  display: inline-block;
  text-decoration: none;
}

/* Generic section styling */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.trust-bar h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 14px;
}

.card h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card p {
  margin: 10px 0 20px;
}

.card a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Lists */
.list {
  max-width: 800px;
  margin: 0 auto;
}

.list li {
  margin-bottom: 10px;
}

/* Pricing table */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pricing-plan {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-plan h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-plan p.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 14px;
  font-style: italic;
}

/* FAQ preview */
.faq-preview {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 40px 20px;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
}

footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

footer .footer-column {
  flex: 1 1 200px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* ===== How it works content ===== */
main .section ul{ margin: 10px 0 14px 18px; }
main .section li{ margin: 6px 0; }


/* === Added: header logo, active nav, mobile toggle === */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
header .brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
header .brand img{
  /* Logo size (make header logo prominent like before) */
    height:80px;
  width:auto;
  max-width: 320px;
  display:block;
}

@media (max-width: 900px){
  header .brand img{ height:56px; max-width: 220px; }
  header{ padding: 10px 12px; gap:12px; }
  nav ul{ gap:12px; }
}

nav{ flex:1; min-width:0; }
nav ul{ justify-content:flex-end; }
nav ul li a.active{
  color: var(--primary-color);
  position: relative;
}
nav ul li a.active::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-8px;
  height:2px;
  background: var(--primary-color);
}
/* Mobile nav toggle button (hamburger) */
.nav-toggle{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.86);
  cursor:pointer;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
}
.nav-toggle span{
  width:18px;
  height:2px;
  background: var(--dark-text);
  display:block;
}
@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; }
  nav ul{ gap:14px; }
}

/* WhatsApp Floating Button */
.wa-float{
  position: fixed;
  bottom: 18px;
  z-index: 99999;

  width: 70px;      /* button size */
  height: 70px;
  border-radius: 50%;
  background: #25D366;

  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.wa-left{ left: 18px; right: auto; }
.wa-right{ right: 18px; left: auto; }

.wa-icon{
  width: 38px;
  height: 38px;
  color: #fff;
}

/* Tooltip */
.wa-tooltip{
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  background: #111;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: .2s ease;
  pointer-events: none;
}

.wa-left .wa-tooltip{ left: 82px; }
.wa-right .wa-tooltip{ right: 82px; }

.wa-left .wa-tooltip::after,
.wa-right .wa-tooltip::after{
  content:"";
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border-width:6px;
  border-style:solid;
}

.wa-left .wa-tooltip::after{
  left:-6px;
  border-color: transparent #111 transparent transparent;
}

.wa-right .wa-tooltip::after{
  right:-6px;
  border-color: transparent transparent transparent #111;
}

.wa-float:hover .wa-tooltip{
  opacity: 1;
}
