:root {
  --primary: #468432;
  --primary-dark: #0D4715;

  --secondary: #1F2937;

  --background: #EEEEEE;
  --surface: #FFFFFF;

  --text: #111827;
  --text-muted: #6B7280;

  --border: #000000;
}

.products-section,
.why-choose-section,
.partners-section {
  background-color: var(--background);
}

.about-section,
.services-section,
.process-section {
  background-color: var(--surface);
}

.product-detail-section {
  padding: 120px 0 100px;
}

.product-detail-wrapper {
  background: #fff;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
}

.product-detail-image {
  background: linear-gradient(
    135deg,
    #f8fafc,
    #ffffff
  );

  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.product-detail-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  transition: transform .4s ease;
}

.product-detail-image:hover img {
  transform: scale(1.05);
}

.product-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-description {
  font-size: 1.05rem;
  line-height: 1.9;
}

.product-features li {
  margin-bottom: 18px;
}

.btn-whatsapp,
.btn-outline-secondary {
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.spec-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.spec-card small {
  display: block;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.spec-card strong {
  color: var(--text);
}


body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--surface);
  padding-top: 82px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

section {
  padding: 30px 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary);
  color: #fff;

  font-size: 28px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  z-index: 999;
}

.spec-table-wrapper {
  background: var(--surface);

  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);

  margin-top: 48px;
}

.spec-table {
  width: 100%;
  min-width: 1000px;

  border-collapse: collapse;
}

.spec-table th {
  background: var(--primary);

  color: #fff;

  padding: 10px;

  font-size: 1.3rem;
  font-weight: 600;

  text-align: left;
}

.spec-table td {
  padding: 5px 10px;

  border-bottom: 1px solid var(--border);

  color: var(--text-muted);

  vertical-align: top;
}

.spec-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.spec-table td:first-child {
  width: 240px;

  font-weight: 600;

  color: var(--text);
}

/* =======================
  NAVBAR
======================= */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.btn-consultation {
  background: var(--primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-consultation:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar .nav-link {
  position: relative;
}

.navbar .nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;
  height: 2px;

  background: var(--primary);

  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* =======================
    HERO SECTION
======================= */

.hero-section {
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #ffffff 100%
  );

  overflow: hidden;
}

.hero-badge {
  background: rgba(107, 165, 57, 0.1);
  color: var(--primary);

  padding: 10px 18px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;

  color: var(--secondary);
}

.hero-description {
  max-width: 560px;

  font-size: 1.1rem;
  line-height: 1.8;

  color: var(--text-muted);
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;

  padding: 14px 28px;
  border-radius: 12px;

  font-weight: 600;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--secondary);
  color: var(--secondary);

  padding: 14px 28px;
  border-radius: 12px;

  font-weight: 600;
}

.btn-outline-custom:hover {
  background: var(--secondary);
  color: #fff;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--text);
  font-weight: 500;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-image {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {

  .hero-section {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-image {
    max-width: 80%;
  }

}

.hero-carousel {
  padding: 0;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

.hero-carousel .carousel-indicators {
  margin-bottom: -10px;
}

.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background-color: var(--primary);
}

@media (max-width: 991px) {

  .hero-carousel {
    margin-top: 40px;
  }

  .hero-carousel .carousel-item img {
    height: 300px;
  }

}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 20px;
}

.hero-carousel .carousel-item a {
  display: block;
}

.hero-carousel .carousel-item img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-carousel .carousel-item:hover img {
  transform: scale(1.03);
}

.hero-slide-link {
  position: relative;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  padding: 24px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    transparent 40%
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-slide-link:hover .hero-slide-overlay {
  opacity: 1;
}

.hero-slide-label {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);

  padding: 12px 18px;
  border-radius: 12px;

  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* =======================
   SERVICE AREA
======================= */

.service-area-section {
  background: var(--secondary);
}

.section-badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.1);

  color: var(--primary);

  font-size: 14px;
  font-weight: 600;
}

.section-title {
  color: #ffffff;

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.section-description {
  color: rgba(255, 255, 255, 0.75);

  max-width: 650px;
  margin: 0 auto;

  line-height: 1.8;

  font-size: 1.2rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 180px;

  text-decoration: none;
  color: var(--text);

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;

  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);

  border-color: var(--primary);

  box-shadow: 0 15px 35px rgba(107, 165, 57, 0.15);

  color: var(--primary);
}

.location-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.location-card h5 {
  margin: 0;
  font-weight: 600;
}

.about-section {
  padding: 100px 0;
  background: var(--background);
}

.about-logo {
  margin: 32px 0;
}

.about-logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.about-title {
  max-width: 900px;

  margin: 0 auto 24px;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;

  color: var(--text);

  text-align: center;

  white-space: normal;
}

.about-description {
  max-width: 760px;
  margin: 0 auto 16px;

  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-feature-card {
  height: 100%;

  padding: 28px 24px;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;

  transition: all 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.about-feature-card i {
  font-size: 2rem;
  color: var(--primary);

  margin-bottom: 16px;
}

.about-feature-card h5 {
  font-size: 1rem;
  font-weight: 600;

  margin-bottom: 10px;
}

.about-feature-card p {
  margin: 0;

  font-size: 1.05rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {

  .about-section {
    padding: 80px 0;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-logo img {
    max-width: 220px;
  }

}

.location-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  padding: 32px 24px;

  text-align: center;

  transition: all 0.3s ease;

  height: 100%;
}

.location-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.08);

  border-color: var(--primary);
}

.location-card i {
  color: var(--primary);

  font-size: 2rem;

  margin-bottom: 16px;
}

.location-card h5 {
  color: #ffffff;

  font-weight: 600;

  margin-bottom: 0;
}

/* =======================
   ABOUT SECTION
======================= */

.about-section {
  background: var(--surface);
}

.section-tag {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(107, 165, 57, 0.1);

  color: var(--primary);

  font-size: 14px;
  font-weight: 600;
}

.about-title {
  color: var(--secondary);

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;

  line-height: 1.3;
}

.about-description {
  color: var(--text-muted);

  line-height: 1.8;

  margin-bottom: 1rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.about-feature {
  display: flex;
  gap: 16px;

  align-items: flex-start;
}

.feature-icon {
  width: 56px;
  height: 56px;

  min-width: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(107, 165, 57, 0.1);

  color: var(--primary);

  border-radius: 16px;

  font-size: 1.3rem;
}

.about-feature h5 {
  color: var(--secondary);

  font-size: 1rem;
  font-weight: 600;

  margin-bottom: 6px;
}

.about-feature p {
  color: var(--text-muted);

  font-size: 0.95rem;

  margin-bottom: 0;
}

/* =======================
   PRODUCTS SECTION
======================= */

.product-tabs {
  gap: 16px;
}


.product-tabs .nav-link span {
  margin-top: 6px;

  font-size: 0.85rem;
  font-weight: 500;

  color: var(--text-muted);
}

.product-tabs .nav-link:hover{
    transform:translateY(-3px);
    border-color:#468432;
}


.product-tabs .nav-link.active{
    border-color:#468432;
    background:#fff !important;
    box-shadow:0 8px 20px rgba(107,165,57,.15);
}

.product-tabs .nav-link.active span {
  color: rgba(255, 255, 255, 0.8);
}

.tab-content {
  margin-top: 20px;
}

@media (max-width: 768px) {

  .product-tabs {
    flex-direction: column;
  }

}



/* .product-image {
  height: 180px;
}

.product-image img {
  max-height: 140px;
} */

.product-tabs .nav-link {
  min-width: 220px;
  min-height: 140px;
  border:2px solid #e5e7eb;
    border-radius:14px;
    background:#fff;
    transition:.3s;

  display: flex;
  justify-content: center;
  align-items: center;
}

.category-icon{
    width:150px;
    height:90px;
    object-fit:contain;
    display:block;
}
/* =======================
  PRODUCT CARD
======================= */

.product-card {
  height: 100%;

  background: #ffffff;

  border: 1px solid #e5e7eb;
  border-radius: 24px;

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);

  border-color: rgba(22, 163, 74, 0.25);

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.product-image {
  height: 220px;

  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f8fafc;

  border-bottom: 1px solid #eef2f7;
}

.product-image img {
  max-width: 100%;
  max-height: 220px;

  object-fit: contain;

  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-content {
  padding: 24px;

  display: flex;
  flex-direction: column;

  height: calc(100% - 220px);
}

.product-badge {
  display: inline-block;

  width: fit-content;

  margin-bottom: 14px;
  padding: 6px 12px;

  border-radius: 999px;

  background: rgba(22, 163, 74, 0.1);

  color: var(--primary);

  font-size: 0.75rem;
  font-weight: 600;
}

.product-content h4 {
  font-size: 1.1rem;
  font-weight: 700;

  line-height: 1.4;

  margin-bottom: 12px;

  color: #0f172a;
}

.product-content p {
  color: #64748b;

  line-height: 1.7;
  font-size: 1.05rem;

  margin-bottom: 24px;

  flex-grow: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #000000;

  font-weight: 600;

  text-decoration: none;
}

.product-link i {
  transition: transform 0.3s ease;
}

.product-link:hover i {
  transform: translateX(4px);
}

/* =======================
   SERVICES SECTION
======================= */

.services-section {
  background: var(--surface);
}

.services-title {
  color: var(--secondary);

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.services-description {
  max-width: 700px;

  margin: 0 auto;

  color: var(--text-muted);

  line-height: 1.8;

  font-size: 1.3rem;
}

.service-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;

    padding:24px;

    display:flex;
    align-items:flex-start;
    gap:20px;

    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.service-icon{
    width:70px;
    height:70px;

    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#6BA53915;
    color:#468432;

    border-radius:16px;
}

.service-content{
    flex:1;
}

.service-content h4{
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:8px;
}

.service-content p{
    margin:0;
    color:#6b7280;
    line-height:1.7;
}

.service-icon i{
    font-size:2rem;
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* =======================
   WHY CHOOSE US
======================= */

.why-section {
  background: var(--background);
}

.why-title {
  color: var(--secondary);

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;

  line-height: 1.3;
}

.why-description {
  color: var(--text-muted);

  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 56px;
  height: 56px;

  min-width: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(107, 165, 57, 0.1);

  border-radius: 16px;
}

.why-icon i {
  color: var(--primary);

  font-size: 1.5rem;
}

.why-item h5 {
  color: var(--secondary);

  font-size: 1.1rem;
  font-weight: 600;

  margin-bottom: 8px;
}

.why-item p {
  color: var(--text-muted);

  line-height: 1.7;

  margin-bottom: 0;
}

.why-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

/* =======================
   PROCESS SECTION
======================= */

.process-section {
  background: var(--surface);
}

.process-title {
  color: var(--secondary);

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.process-description {
  max-width: 700px;

  margin: 0 auto;

  color: var(--text-muted);

  line-height: 1.8;
}

.process-card {
  position: relative;

  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 24px;

  padding: 40px 30px;

  text-align: center;

  height: 100%;

  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  border-color: rgba(107, 165, 57, 0.3);
}

.process-number {
  position: absolute;

  top: 24px;
  left: 24px;

  font-size: 2rem;
  font-weight: 700;

  color: var(--primary-dark);
}

.process-icon {
  width: 80px;
  height: 80px;

  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(107, 165, 57, 0.1);
}

.process-icon i {
  color: var(--primary);

  font-size: 2rem;
}

.process-card h4 {
  color: var(--secondary);

  font-size: 1.25rem;
  font-weight: 600;

  margin-bottom: 16px;
}

.process-card p {
  color: var(--text-muted);

  line-height: 1.8;

  margin-bottom: 0;
}

/* =======================
   PARTNERS SECTION
======================= */

.partners-section {
  background: var(--background);
}

.partners-title {
  color: var(--secondary);

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.partners-description {
  max-width: 700px;

  margin: 0 auto;

  color: var(--text-muted);

  line-height: 1.8;
}

.partner-card {
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 20px;

  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

  border-color: rgba(107, 165, 57, 0.3);
}

.partner-card img {
  max-width: 100%;
  max-height: 50px;

  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.7;

  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}   

/* =======================
   CTA SECTION
======================= */

.cta-section {
  background: var(--surface);
}

.cta-wrapper {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );

  border-radius: 32px;

  padding: 60px;

  overflow: hidden;

  position: relative;
}

.cta-wrapper::before {
  content: "";

  position: absolute;

  top: -80px;
  right: -80px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.cta-tag {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;
}

.cta-title {
  color: #ffffff;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;

  line-height: 1.3;
}

.cta-description {
  color: #ffffff;

  max-width: 650px;

  line-height: 1.8;

  margin-bottom: 0;

  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: lg-end;
}

@media (min-width: 992px) {
  .cta-buttons {
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  .cta-buttons {
    justify-content: flex-start;
  }
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;

  padding: 16px 24px;

  border-radius: 14px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: #ffffff;
  color: v#5f5f5f;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);

  color: #000000;

  background: #f3f4f6;
}

.btn-cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;
}

@media (max-width: 991px) {

  .cta-wrapper {
    padding: 40px 32px;

    text-align: center;
  }

  .cta-buttons {
    margin-top: 12px;
  }

}

/* =======================
   FOOTER
======================= */

.footer-section {
  background: #111827;

  padding: 80px 0 30px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  margin-bottom: 24px;
}

.footer-title {
  color: #ffffff;

  font-size: 1.1rem;
  font-weight: 600;

  margin-bottom: 24px;
}

.footer-links,
.footer-contact {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);

  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #6BA539;

  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 14px;

  margin-bottom: 20px;
}

.footer-contact i {
  color: #ffffff;

  font-size: 1.1rem;

  margin-top: 4px;
}

.footer-contact span,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);

  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);

  margin: 50px 0 30px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);

  margin: 0;
}

.footer-bottom a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {

  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

}

.footer-logo-img {
  height: 50px;
  width: auto;
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 32px;
  }
}

.product-features {
  list-style: none;

  padding: 0;
}

.product-features li {
  margin-bottom: 12px;

  color: var(--text);

  position: relative;

  padding-left: 30px;
}

.product-features li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--primary);

  font-weight: 700;
}