/* #region Start Landing */
.landing {
  min-height: 100vh;
  background-color: var(--secondary-color);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.landing .container {
  z-index: 30;
  padding-inline: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}

.landing .container h1 {
  font-size: 45px;
  font-weight: bold;
  color: var(--main-color);
  margin: 0;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.landing .container p {
  font-size: 24px;
  color: var(--secondary-color);
  width: 500px;
  max-width: 100%;
  line-height: 2;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.landing .container a {
  display: block;
  background: var(--green-gradient);
  width: fit-content;
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 300px;
  font-size: 20px;
}

.landing .image {
  position: absolute;
  width: 97%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 50px;
  user-select: none;
}

.landing .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50px;
  filter: blur(2px);
}

.landing .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

@media (max-width: 991px) {
  .landing .container h1 {
    font-size: 30px;
  }

  .landing .container p {
    font-size: 20px;
  }

  .landing .container a {
    font-size: 16px;
    padding: 10px 15px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .landing .image {
    border-radius: 20px;
  }

  .landing .image img {
    border-radius: 20px;
  }

  .landing .container h1 {
    font-size: 25px;
    align-self: center;
  }

  .landing .container p {
    text-align: center;
    align-self: center;
    font-size: 16px;
    width: fit-content;
  }

  .landing .container a {
    font-size: 14px;
    margin-top: 20px;
    margin-inline: auto;
  }
}
/* #endregion End Landing */

/* #region Start About Us */
.about {
  padding-block: var(--section-padding);
  color: var(--secondary-color);
}

.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about .text,
.about .images {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about .images {
  transition-delay: 0.2s;
}

.about.active .text,
.about.active .images {
  opacity: 1;
  transform: translateY(0);
}

.about .text p span {
  color: var(--main-color);
  font-weight: bold;
}

.about .text h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark-text);
  margin: 0;
}

.about .text h2 span {
  color: var(--main-color);
}

.about .text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark-text);
  margin: 0;
  line-height: 2;
}

.about .text .btn svg {
  transition: transform 0.3s ease;
}

.about .text .btn:hover svg {
  transform: translateX(4px);
}

.about .images.grid-layout {
  flex: none;
  width: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about .images.grid-layout .img-box {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s ease;
  width: 300px;
  object-fit: cover;
}

.about .images.grid-layout .img-box.img-1,
.about .images.grid-layout .img-box.img-2 {
  aspect-ratio: 1 / 1.1;
}

.about .images.grid-layout .img-box.img-3 {
  grid-column: span 2;
  aspect-ratio: 1.8 / 1;
  width: 100%;
  max-width: 700px;
  height: 250px;
}

.about .images.grid-layout .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition-duration: 0.3s;
}

.about .images.grid-layout .img-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .about .images.grid-layout .img-box:hover img {
    transform: scale(1);
  }
  .about .images.grid-layout .img-box {
    width: 100% !important;
    height: 300px !important;
    max-width: 100% !important;
  }

  .about .container {
    flex-direction: column;
    gap: 40px;
  }

  .about .images.grid-layout {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 20px;
  }

  .about .images.grid-layout .img-box.img-3 {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .about .text {
    align-items: center;
    text-align: center;
  }

  .about .text h2 {
    align-self: center;
  }

  .about .text p {
    text-align: center;
  }

  .about .text .btn {
    margin-inline: auto;
  }
}

@media (max-width: 575px) {
  .about {
    padding-block: 50px;
  }

  .about .text h2 {
    font-size: 28px;
  }

  .about .text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about .images.grid-layout {
    gap: 15px;
  }
}
/* #endregion End About Us */

/* #region Start Brands */
.brands {
  background-color: var(--dark-background);
  padding-block: var(--section-padding);
}

.brands .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.brands h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark-text);
  margin: 0;
  align-self: flex-start;
}

.brands h2 span {
  color: var(--main-color);
}

.brands .cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.brands .card {
  flex: 1;
  min-width: 320px;
  max-width: 480px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.brands .card .image {
  height: 135px;
}

.brands .card.horizon .image {
  margin-top: -20px;
}

.brands .card.horizon .btn {
  margin-top: 35px;
}

.brands .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brands .card p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--dark-text);
  margin: 0;
}

.brands .see-more {
  color: var(--dark-text);
  text-decoration: underline;
  font-weight: bold;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .brands .card .image {
    height: 100px;
  }
}

@media (max-width: 991px) {
  .brands .card .image {
    height: 90px;
  }
}

@media (max-width: 767px) {
  .brands .card .image {
    height: 90px;
  }

  .brands h2 {
    align-self: center;
  }

  .brands .card {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .brands {
    padding-block: 50px;
  }

  .brands h2 {
    font-size: 28px;
  }
}
/* #endregion End Brands */
/* #region Start Featured Products */
.featured-products {
  background-color: var(--secondary-color);
  padding-block: var(--section-padding);
}

.featured-products .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.featured-products .section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.featured-products .section-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
}

.featured-products .section-head h2 span {
  color: var(--main-color);
}

.featured-products .section-head p {
  font-size: 16px;
  color: var(--dark-text);
  opacity: 0.85;
  margin: 0;
  max-width: 650px;
  line-height: 1.6;
}

/* 3-Column Grid */
.featured-products .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* Card Styling */
.featured-products .product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.featured-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.featured-products .card-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #fafafa;
  border-radius: 14px;
  padding: 15px;
}

.featured-products .card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.06));
}

.featured-products .card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-products .brand-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--main-color);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.featured-products .trade-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 4px 0;
}

.featured-products .scientific-name {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  font-style: italic;
}

.featured-products .meta-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.featured-products .meta-pills span {
  font-size: 11px;
  background: var(--dark-background);
  color: var(--dark-text);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.featured-products .caption {
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark-text);
  opacity: 0.85;
  margin: 0 0 16px 0;
}

.featured-products .product-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 14px;
}

.featured-products .see-more {
  color: var(--dark-text);
  text-decoration: underline;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.2s ease;
}

.featured-products .see-more:hover {
  color: var(--main-color);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  .featured-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .featured-products .section-head {
    align-items: center;
    text-align: center;
  }

  .featured-products .product-card .btn {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .featured-products {
    padding-block: 50px;
  }

  .featured-products .section-head h2 {
    font-size: 28px;
  }

  .featured-products .products-grid {
    grid-template-columns: 1fr;
  }
}
/* #endregion End Featured Products */
/* #region Start Services Flow */
.services-flow {
  background-color: var(--dark-background);
  padding-block: var(--section-padding);
}

.services-flow-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

/* Overview Column */
.flow-overview {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}
@media (max-width: 991px) {
  .flow-overview .btn.large {
    display: none;
  }
}

@media (min-width: 992px) {
  .services-flow-wrapper .btn:not(.large) {
    display: none;
  }
}

.flow-overview .section-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.flow-overview .section-head h2 span {
  color: var(--main-color);
}

.flow-overview .section-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
  opacity: 0.9;
  margin: 0;
}

/* Micro Stats Panel */
.flow-stats-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-mini h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
  margin: 0;
}

.stat-mini span {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Sequenced Cards Column */
.flow-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.flow-card:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  border-color: rgba(46, 178, 129, 0.3);
}

.card-step {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-background);
  line-height: 1;
  letter-spacing: -1px;
  padding-top: 4px;
  transition: color 0.3s ease;
}

.flow-card:hover .card-step {
  color: var(--main-color);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--secondary-color);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.flow-card:hover .flow-icon {
  background: var(--green-gradient);
  color: var(--secondary-color);
}

.card-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.35;
}

.card-body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark-text);
  opacity: 0.85;
  margin: 0;
}

/* Responsive Queries */
@media (max-width: 991px) {
  .services-flow-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .flow-overview {
    position: static;
  }
}

@media (max-width: 575px) {
  .services-flow {
    padding-block: 50px;
  }

  .flow-overview .section-head h2 {
    font-size: 28px;
  }

  .flow-stats-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-card {
    padding: 20px;
    gap: 16px;
  }

  .card-step {
    font-size: 20px;
  }
}
/* #endregion End Services Flow */
/* #region Start Events */
.events {
  background-color: var(--dark-background);
  padding-block: var(--section-padding);
  color: var(--secondary-color);
}

.events .event-card {
  opacity: 0;
  transform: translateX(-100px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.events.active .event-card {
  opacity: 1;
  transform: translateX(0);
}

.events .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.events h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark-text);
  margin: 0;
  align-self: flex-start;
}

.events h2 span {
  color: var(--main-color);
}

.events .event-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.events .event-card .image {
  width: 65%;
}

.events .event-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events .event-card .content {
  flex: 1;
  background-color: var(--secondary-color);
  color: var(--dark-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 50px 40px;
}

.events .event-card .content h3 {
  font-size: 30px;
  color: var(--main-color);
  font-weight: bold;
  margin: 0;
}

.events .event-card .content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767px) {
  .events h2 {
    align-self: center;
  }

  .events .event-card {
    flex-direction: column;
  }

  .events .event-card .image {
    flex: 1;
    width: 100%;
    height: 280px;
    border: 1px dashed var(--light-border);
  }

  .events .event-card .content {
    padding: 40px 20px;
  }
}

@media (max-width: 575px) {
  .events {
    padding-block: 50px;
  }

  .events .event-card .content h3 {
    font-size: 24px;
  }
}
/* #endregion End Events */
/* #region Start Onboarding Contact */
.onboarding-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 50000;
  padding: 20px;
  box-sizing: border-box;
}

.onboarding-card {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  background: var(--secondary-color);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
  color: #1e293b;
  box-sizing: border-box;
}

.onboarding-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5px;
  margin-top: 50px;
}

.onboarding-card .head p {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
}

.onboarding-card .head .logo {
  width: 60px;
}

.onboarding-card .head .logo img {
  width: 100%;
  object-fit: cover;
}

.onboarding-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.onboarding-card .notice-icon {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #d97706;
  flex-shrink: 0;
}

.onboarding-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.onboarding-card .card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 20px 0;
}

.onboarding-card .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onboarding-card .contact-text {
  flex-grow: 1;
  text-align: left;
  font-weight: bold;
}

.onboarding-card .close-btn {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  box-shadow: black 0px 0px 2px;
  justify-content: center;
  border: none;
  border-radius: 50%;
  color: #64748b;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.onboarding-card .close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}
@media (max-width: 767px) {
  .onboarding-card {
    max-width: 90%;
  }
}
/* #endregion End Onboarding Contact */
