/* ============================= */
/* NAVIGATION */
/* ============================= */

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
}

/* Mobile menu container */
.nav-links {
  list-style: none;
  position: absolute;
  top: 100%;            /* ðŸ”‘ key fix */
  left: 0;
  right: 0;
  background: #ffffff;
  width: 100%;
  display: none;
  flex-direction: column;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  z-index: 999;
}


.nav-links.open {
  display: flex;
}

/* NAV BUTTON STYLE (ALL LINKS) */
.nav-links a {
  margin: 0.35rem 0.75rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  text-align: center;
}

/* Hover effect */
.nav-links a:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  transform: translateY(-1px);
}

/* Active page */
.nav-links a.active {
  background: var(--color-accent);
  color: var(--color-dark);
}

/* Offers button â€“ slightly stronger */
.offer-nav {
  background: var(--color-accent);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ============================= */
/* DESKTOP */
/* ============================= */

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    border: none;
    background: transparent;
  }

  .nav-links a {
    margin: 0 0.35rem;
    padding: 0.45rem 0.9rem;
  }
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: var(--color-accent);
  color: var(--color-dark);
}

.offer-nav {
  background: var(--color-accent);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
}
.product-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.offer-card {
  display: grid;
  gap: 2rem;
}

.offer-list {
  list-style: none;
}

.offer-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
/* ============================= */
/* HERO SLIDER CONTENT */
/* ============================= */

.slide-content {
  max-width: 700px;
  padding: 4rem 1.5rem;
}

.slide-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

/* ============================= */
/* SECTION TITLES */
/* ============================= */

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

/* ============================= */
/* STATS COUNTERS */
/* ============================= */

.stats-section {
  padding: 4rem 0;
  background: var(--color-light);
}

.stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.stat .count {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat p {
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* SMALL UX POLISH */
/* ============================= */

.nav-links a:hover {
  background: var(--color-light);
}

.offer-nav:hover {
  opacity: 0.9;
}
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  text-align: center;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin-top: 0.5rem;
}

.faq-item.open p {
  display: block;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
}

/* ============================= */
/* CONTENT RHYTHM */
/* ============================= */

.container p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.container p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 2rem;
}
/* ============================= */
/* CONTACT FORM */
/* ============================= */

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-grid input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================= */
/* TESTIMONIAL CARDS */
/* ============================= */

.testimonial {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 2rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #374151;
}

.testimonial strong {
  color: #111827;
}

/* ============================= */
/* MOBILE NAV – CLEAN FINAL */
/* ============================= */

@media (max-width: 767px) {

  .nav-links {
    padding: 0.5rem 0;
  }

  .nav-links a {
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0.9rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #f3f4f6;
  }

  .offer-nav {
    background: none;
    box-shadow: none;
    font-weight: 600;
  }
}
/* ============================= */
/* MOBILE FORCE-RESET NAV BUTTONS */
/* ============================= */

@media (max-width: 767px) {

  header .nav-links li a,
  header .nav-links li a.offer-nav {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: var(--color-dark) !important;
    padding: 0.85rem 1.5rem !important;
    margin: 0 !important;
    font-weight: 600 !important;
  }

  header .nav-links li a:hover,
  header .nav-links li a:active,
  header .nav-links li a.active {
    background: #f3f4f6 !important;
  }
}
/* ============================= */
/* MOBILE: NORMALISE OFFER BUTTON HEIGHT */
/* ============================= */

@media (max-width: 767px) {
  .nav-links a.offer-nav {
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
  }
}

/* ============================= */
/* FAQ SECTION – PROFESSIONAL COMPACT LAYOUT */
/* ============================= */

.faq-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.faq-item p {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
}

/* Slightly tighter spacing on mobile */
@media (max-width: 767px) {
  .faq-item {
    padding: 0.9rem 0;
  }

  .faq-item h4 {
    font-size: 0.95rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}
/* ============================= */
/* FAQ – HARD COMPACT OVERRIDE */
/* ============================= */

section .faq-item {
  margin: 0 !important;
  padding: 0.85rem 0 !important;
  border-bottom: 1px solid #e5e7eb;
}

section .faq-item:last-child {
  border-bottom: none;
}

/* Kill extra margins from headings & paragraphs */
section .faq-item h4 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

section .faq-item p {
  margin: 0.35rem 0 0 0 !important;
  padding: 0 !important;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
}

/* Remove reveal spacing impact inside FAQ */
section .faq-item.reveal {
  transform: none !important;
}

/* Mobile tightening */
@media (max-width: 767px) {
  section .faq-item {
    padding: 0.7rem 0 !important;
  }

  section .faq-item h4 {
    font-size: 0.95rem;
  }

  section .faq-item p {
    font-size: 0.9rem;
  }
}
/* ============================= */
/* HEADER CONTAINER */
/* ============================= */



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;          /* fixed navbar height */
  overflow: hidden;     /* nothing can spill out */
}
@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }
}
/* ============================= */
/* BLOG GRID – FINAL CLEAN VERSION */
/* ============================= */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: 2.5rem;
}

/* Tablet */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* BLOG CARD */
/* ============================= */

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Thumbnail */
.blog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-content h3 {
  margin-bottom: 0.75rem;
}

.blog-card-content h3 a {
  color: var(--color-dark);
  text-decoration: none;
}

.blog-card-content h3 a:hover {
  text-decoration: underline;
}

.blog-card-content p {
  margin-bottom: 1.25rem;
  color: #374151;
}

/* Button sticks to bottom */
.blog-card-content .btn {
  margin-top: auto;
}

/* ============================= */
/* BLOG IMAGE INSIDE POSTS */
/* ============================= */

.blog-image {
  margin: 2.5rem 0;
  text-align: center;
}

.blog-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-image figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #6b7280;
}
@media (min-width: 1024px) {
  .blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
/* ============================= */
/* TYPOGRAPHY RECOVERY */
/* ============================= */

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
/* ============================= */
/* SECTION SPACING */
/* ============================= */

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 767px) {
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.founder-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.founder-image img {
  width: 220px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.founder-content p {
  margin-bottom: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .founder-section {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    margin: 0 auto;
  }
}






