/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1fa12e;
  --primary-soft: #e6f9e9;
  --dark: #102418;
  --gray: #f5f5f5;
  --text: #202020;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--text);
}





/* Brand Logo Optimized */
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Space alignment for nav */
.logo-area {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 44px;
}










/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  border: 3px solid var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  animation: bounce 1.1s infinite;
  font-size: 28px;
  color: var(--primary);
}

.preloader-bar {
  width: 160px;
  height: 6px;
  border-radius: 999px;
  background: var(--gray);
  overflow: hidden;
  margin: 0 auto 6px;
}

.preloader-bar span {
  display: block;
  width: 60px;
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  animation: slidebar 1.2s infinite;
}

.preloader-inner p {
  font-size: 13px;
  color: #555;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes slidebar {
  0% { transform: translateX(-60px); }
  50% { transform: translateX(100px); }
  100% { transform: translateX(-60px); }
}

/* ===== Header & Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 10px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.logo-text span:last-child {
  font-size: 11px;
  color: #777;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 14px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #777;
}

.nav-contact i {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Hero Slider (Home) ===== */
.hero-slider {
  margin-top: 64px;
  height: 100vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  color: #fff;
}

.hero-content .tag-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 14px;
  margin-top: 10px;
  color: #f4f4f4;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.btn {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn:hover {
  background: #168226;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 7%;
  display: flex;
  gap: 7px;
  z-index: 3;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.hero-dot.active {
  background: #ffffff;
}

/* Parallax feel */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ===== Sections / Layout ===== */
section {
  padding: 80px 7%;
}

.section-narrow {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  font-size: 28px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  max-width: 600px;
}

.tag-pill-small {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--primary);
}

.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #555;
}

/* Page Hero (Subpages) */
.page-hero {
  margin-top: 64px;
  padding: 70px 7% 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.breadcrumb {
  font-size: 11px;
  margin-bottom: 6px;
  color: #f0f0f0;
}

/* About columns */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
}

.about-layout p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 11px;
  color: #555;
}

.about-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.about-col h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--dark);
}

.about-col ul {
  list-style: none;
  padding-left: 0;
}

.about-col ul li {
  font-size: 13px;
  color: #555;
  padding-left: 12px;
  position: relative;
  margin-bottom: 3px;
}

.about-col ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.products-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
}

.products-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-item {
  margin-bottom: 10px;
}

.product-item h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.product-item p {
  font-size: 12px;
  color: #555;
}

/* Projects */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}

.filter-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

/* PROJECT GRID FIX */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD LOOK */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 260px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 1;
}

/* IMAGE FIX — correct aspect ratio & full cover */
.project-card-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  filter: brightness(0.7);
  transition: filter .35s ease;
}

/* Hover improvement */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.project-card:hover .project-card-img {
  filter: brightness(0.9);
}

/* TEXT LOOK */
.project-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}

.project-card-overlay span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: .85;
  text-transform: uppercase;
}

.project-card-overlay h4 {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
}

/* FILTER BUTTONS FIX */
.filter-btn {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: all .25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #1a733b;
  color: #fff;
  border-color: #1a733b;
}





/* SERVICES SHOWCASE SECTION */
.services-showcase {
  background: #ffffff;
  padding: 80px 7%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 35px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.service-card img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* View More button */
.service-btn {
  background: #111;
  color: #fff;
  padding: 9px 14px;
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.service-btn:hover {
  background: var(--primary);
}
















/* Contact / FAQ / Form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
}

.faq-accordion {
  margin-top: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #e3e3e3;
  margin-bottom: 8px;
  background: #fafafa;
  overflow: hidden;
}

.faq-question {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.faq-answer {
  padding: 0 14px 10px;
  font-size: 13px;
  color: #555;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(90deg);
}

.contact-card {
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: #f8fff8;
  border: 1px solid #d9f1db;
}

.contact-details p {
  font-size: 13px;
  color: #444;
  margin-bottom: 3px;
}

.contact-details i {
  color: var(--primary);
  margin-right: 6px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
  color: #444;
}

.field input,
.field textarea,
.field select {
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  min-height: 80px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(31,161,46,0.1);
}

.map-wrapper {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
}

/* NEW FOOTER STYLE — GREEN THEME */



/* FOOTER STYLING — Premium Dark Theme */
.main-footer {
  background: #111; /* Elegant dark */
  color: #d9e9d8;
  padding: 60px 7% 25px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 45px;
  max-width: 1250px;
  margin: auto;
}

.main-footer h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.main-footer p,
.footer-links-grid a {
  font-size: 13px;
  line-height: 1.55;
  opacity: .92;
}

.main-footer i {
  color: var(--primary);
  margin-right: 8px;
}

/* 2 Column Services Layout */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px 20px;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
}

.footer-links-grid a {
  text-decoration: none;
  color: #c9d7c8;
  transition: 0.25s ease;
}

.footer-links-grid a:hover {
  color: var(--primary);
  padding-left: 6px;
}
/* 🌟 Center White Social Icons */
.footer-social-wrapper a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-social-wrapper a:hover {
  background: #48d764;
  border-color: #48d764;
  transform: translateY(-4px);
  box-shadow: 0px 6px 18px rgba(72,215,100,0.45);
}
/* Bottom Styling */
.footer-bottom {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid #222;
  font-size: 12px;
  opacity: .8;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    text-align: center;
  }
}














/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 2500;
}

.whatsapp-float a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  font-size: 26px;
}

.whatsapp-float span {
  position: absolute;
  right: 64px;
  bottom: 12px;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Modal Lead Form */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 2800;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  position: relative;
  width: 320px;
  max-width: 90%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px 18px;
  animation: zoomIn 0.35s ease;
}

.modal-close {
  position: absolute;
  top: 10px;
  left: 10px; /* top-left as requested */
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

.modal-dialog h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--dark);
}

.modal-dialog p {
  font-size: 12px;
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}

.modal-dialog form input,
.modal-dialog form select,
.modal-dialog form textarea {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
  font-size: 13px;
  outline: none;
}

.modal-dialog form input:focus,
.modal-dialog form select:focus,
.modal-dialog form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(31,161,46,0.1);
}

.modal-submit {
  width: 100%;
  border: none;
  padding: 9px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}

@keyframes zoomIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 54px;
    right: 7%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
  .nav-contact {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .page-hero {
    padding: 64px 7% 40px;
  }
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 6%;
  }
  .projects-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Universal Stylish Green Neon Cards */
.card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: .35s ease-in-out;
  position: relative;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  border: 2px solid var(--primary);
  box-shadow:
    0 0 12px rgba(31,161,46,0.55),
    0 0 26px rgba(31,161,46,0.25),
    0 0 40px rgba(31,161,46,0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(31,161,46,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 10px;
  transition: .3s ease;
}

.card:hover .card-icon {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(-8deg);
}

.card h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.card:hover {
  animation: neonPulse 1.6s infinite alternate ease-in-out;
}
@keyframes neonPulse {
  from {
    box-shadow:
      0 0 12px rgba(31,161,46,0.55),
      0 0 26px rgba(31,161,46,0.25);
  }
  to {
    box-shadow:
      0 0 20px rgba(31,161,46,0.75),
      0 0 50px rgba(31,161,46,0.35);
  }
}
/* Certificate Logos - Clean & Centered */
.certificates-section {
  background: #ffffff;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-container {
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cert-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: certScroll 18s linear infinite;
}

.cert-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.7);
  opacity: 0.95;
  transition: 0.3s ease;
}

.cert-track img:hover {
  filter: grayscale(0);
  transform: scale(1.12);
}

@keyframes certScroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .cert-track {
    gap: 30px;
  }
  .cert-track img {
    height: 40px;
  }
}






/* Quick Contact Bar */
.quick-contact-bar {
  background: var(--primary); /* Green brand theme */
  padding: 20px 7%;
  display: flex;
  justify-content: center;
  text-align: center;
  border-top: 3px solid #0f1c12;
}

.qc-content span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.qc-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.qc-btn {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.call-btn {
  background: #fff;
  color: var(--primary);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.qc-btn:hover {
  filter: brightness(.92);
}
