/* ==========================================================================
   TROPIKAL LIFE - HOME PAGE STYLES (BANNER & ABOUT SECTIONS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO BANNER FULL-WIDTH VIDEO SLIDER
   -------------------------------------------------------------------------- */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Left Vertical Social Bar */
.hero-social-sidebar {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.social-icon-btn:hover {
  background: var(--secondary-gradient);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(242, 105, 1, 0.4);
}

.social-vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--secondary-1);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 12px 0;
  user-select: none;
  text-transform: uppercase;
}

/* Full-Width Slider Track & Wrapper */
.hero-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

/* Slide Background Video & Overlay */
.hero-slide-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.82) 0%, rgba(16, 16, 16, 0.45) 50%, rgba(16, 16, 16, 0.75) 100%);
  z-index: 2;
}

/* Slide Text Content Overlay */
.hero-slide-content {
  position: relative;
  z-index: 5;
  margin-left: 120px;
  margin-right: 120px;
  padding-top: 100px;
  max-width: 780px;
}

.hero-subtitle-tag {
  color: var(--secondary-2);
  margin-bottom: 16px;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-title .title-line-2 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-description {
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
}

/* Hero Slide Staggered Keyframe Animations */
.hero-slide .hero-subtitle-tag,
.hero-slide .hero-title,
.hero-slide .hero-description,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(40px);
}

.hero-slide.active .hero-subtitle-tag {
  animation: heroTextFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-slide.active .hero-title {
  animation: heroTextFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

.hero-slide.active .hero-description {
  animation: heroTextFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards;
}

.hero-slide.active .hero-actions {
  animation: heroTextFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.78s forwards;
}

@keyframes heroTextFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero CTA Action Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

/* Far Right Slider Counter & Controls */
.hero-slider-counter {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  user-select: none;
  z-index: 10;
}

.counter-num {
  font-size: 2.2rem;
  color: #ffffff;
  opacity: 0.45;
  font-weight: 400;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: all var(--transition-fast);
}

.counter-num:hover {
  opacity: 0.8;
  color: var(--secondary-1);
}

.counter-num.active {
  opacity: 1;
  font-weight: 700;
  color: var(--secondary-1);
  transform: scale(1.1);
}

.counter-bar-wrapper {
  width: 3px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  margin: 6px 0;
}

.counter-bar-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33.33%;
  background: var(--secondary-gradient);
  border-radius: 3px;
  transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. ABOUT US SECTION STYLES
   -------------------------------------------------------------------------- */

.about-section {
  padding: 110px 0 100px;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Left Visual Overlapping Image Cards */
.about-visual-col {
  position: relative;
  padding-bottom: 50px;
  padding-right: 50px;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-image-card .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-card:hover .about-img {
  transform: scale(1.06);
}

.about-image-card.main-card {
  width: 85%;
  height: 490px;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.about-image-card.overlap-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 320px;
  border: 8px solid #ffffff;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  animation: floatReverse 5s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

@keyframes floatReverse {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(16px) rotate(-1deg);
  }
}

/* Circular Video Play Button Overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(242, 105, 1, 0.4);
  transition: transform var(--transition-fast);
  z-index: 3;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(242, 105, 1, 0.35);
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.video-play-btn .play-icon {
  font-size: 1.25rem;
  margin-left: 3px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Right Content Column */
.about-subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-1);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-subtitle-tag .subtitle-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.about-title {
  font-size: 2.8rem;
  line-height: 1.18;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 640px;
}

.about-highlight-quote {
  font-family: var(--font-title);
  font-size: 1.08rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--secondary-1);
  border-left: 3px solid var(--secondary-1);
  padding-left: 18px;
  margin-bottom: 36px;
  max-width: 640px;
}

/* Feature & Stat Block */
.about-features-block {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

/* Experience Card Box */
.experience-card {
  background: #ffffff;
  padding: 26px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-card .exp-number {
  display: block;
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-1);
  margin-bottom: 8px;
}

.experience-card .exp-number .plus-sign {
  color: var(--secondary-2);
}

.experience-card .exp-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Right Feature List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242, 105, 1, 0.1);
  color: var(--secondary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.feature-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* Bottom Footer Badges & CTA */
.about-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.badge-check-item i {
  color: var(--secondary-1);
  font-size: 1rem;
}

.about-cta-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   3. OUR PRODUCTS HORIZONTAL EXPANDABLE SLIDER
   -------------------------------------------------------------------------- */

.products-section {
  padding: 90px 0 0px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.products-header-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.products-header-text .subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-1);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-header-text .subtitle-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.products-header-text .section-title {
  font-size: 3.2rem;
  color: var(--text-dark);
}

.products-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prod-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 16, 16, 0.15);
  background: #ffffff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.prod-slider-btn:hover {
  background: var(--secondary-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(242, 105, 1, 0.35);
}

/* Outer Slider Wrapper & Track */
.products-slider-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 100px;
}

.products-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Individual Slider Card Sizing (Exactly 3 cards fit: 290px + 290px + 580px + 48px gap = 1208px) */
.product-slider-card {
  position: relative;
  flex: 0 0 290px;
  height: 510px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  will-change: flex, transform;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-slider-card.active {
  flex: 0 0 580px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* Background image & gradient overlay */
.product-slider-card .card-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-slider-card .card-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-slider-card:hover .card-bg-image img {
  transform: scale(1.08);
}

.product-slider-card .card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.15) 0%, rgba(16, 16, 16, 0.4) 40%, rgba(16, 16, 16, 0.92) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.product-slider-card.active .card-gradient-overlay {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.2) 0%, rgba(16, 16, 16, 0.55) 35%, rgba(16, 16, 16, 0.95) 100%);
}

/* Top Badge Tag */
.product-slider-card .card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--secondary-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Details Panel (Appears on Active/Expanded Card) */
.product-slider-card .card-details-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 32px 28px;
  z-index: 5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
  pointer-events: none;
}

.product-slider-card.active .card-details-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-slider-card .category-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary-2);
  margin-bottom: 8px;
}

.product-slider-card .category-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.product-slider-card .category-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 18px;
}

.product-slider-card .category-sub-list {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-slider-card .category-sub-list li {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.product-slider-card .category-sub-list li i {
  color: var(--secondary-2);
}

.product-slider-card .product-view-btn {
  padding: 12px 26px;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   4. GLOBAL ORIGINS SECTION STYLES
   -------------------------------------------------------------------------- */

.origins-section {
  padding: 90px 0 100px;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.origins-header {
  margin-bottom: 45px;
}

.origins-header .section-title {
  font-size: 3.2rem;
  color: var(--text-dark);
}

.origins-map-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.origins-map-card {
  position: relative;
  width: 100%;
  height: 440px;
  max-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #0b0f19;
}

.origins-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Map Location Pin Badges */
.origin-pin-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.origin-pin-badge:hover {
  transform: translate(-50%, -50%) scale(1.15);
  z-index: 10;
}

.pin-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--secondary-1);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px var(--secondary-1);
}

.pin-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--secondary-1);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.pin-label {
  background: rgba(16, 16, 16, 0.85);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(242, 105, 1, 0.4);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* Country Tags List below map */
.origins-country-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.country-tag-pill {
  background: #ffffff;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.country-tag-pill:hover {
  background: var(--secondary-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 105, 1, 0.3);
}

/* --------------------------------------------------------------------------
   5. WHY TROPIKAL VALUE PROPOSITION SECTION STYLES
   -------------------------------------------------------------------------- */

.why-section {
  padding: 100px 0 110px;
  background-color: #ffffff;
  position: relative;
}

.why-header {
  margin-bottom: 55px;
}

.why-header .subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-1);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-header .subtitle-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.why-header .section-title {
  font-size: 3rem;
  color: var(--text-dark);
  max-width: 780px;
  margin: 0 auto;
}

/* 4-Column Responsive Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-color: rgba(242, 105, 1, 0.2);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(242, 105, 1, 0.08);
  color: var(--secondary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.why-card:hover .why-icon-box {
  background: var(--secondary-gradient);
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(242, 105, 1, 0.3);
}

.why-card-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   6. ESG & SUSTAINABILITY INITIATIVES SECTION STYLES
   -------------------------------------------------------------------------- */

.esg-section {
  padding: 100px 0 110px;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.esg-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 65px;
}

.esg-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 35px;
}

.esg-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.esg-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.esg-pillar-item:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(242, 105, 1, 0.3);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  background: rgba(242, 105, 1, 0.08);
  color: var(--secondary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.esg-pillar-item:hover .pillar-icon-box {
  background: var(--secondary-gradient);
  color: #ffffff;
}

.pillar-text h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pillar-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Right Image Visual Overlay */
.esg-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 8px solid #ffffff;
}

.esg-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.esg-image-wrapper:hover .esg-img {
  transform: scale(1.06);
}

/* Floating Badge Overlay */
.esg-stat-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: floatStatBadge 5s ease-in-out infinite alternate;
}

@keyframes floatStatBadge {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.esg-stat-overlay .stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.esg-stat-overlay .stat-val {
  display: block;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.esg-stat-overlay .stat-lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--secondary-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. LATEST ARTICLES HOVER REVEAL SECTION STYLES
   -------------------------------------------------------------------------- */

.articles-section {
  padding: 100px 0 110px;
  background-color: #ffffff;
  position: relative;
}

.articles-header-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}

.articles-more-btn {
  padding: 12px 28px;
  font-size: 0.95rem;
}

/* 3-Column Responsive Grid (3 desktop, 2 tablet, 1 mobile) */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-reveal-card {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background-color: #0b0f19;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.article-reveal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.article-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-reveal-card:hover .article-img {
  transform: scale(1.1);
}

.article-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.1) 0%, rgba(16, 16, 16, 0.45) 50%, rgba(16, 16, 16, 0.92) 100%);
  transition: background 0.5s ease;
  z-index: 2;
}

.article-reveal-card:hover .article-gradient-overlay {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.25) 0%, rgba(16, 16, 16, 0.75) 45%, rgba(16, 16, 16, 0.96) 100%);
}

.article-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(16, 16, 16, 0.6);
  color: var(--secondary-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Hover Reveal Content Overlay */
.article-reveal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 28px;
  z-index: 5;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.article-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary-2);
  margin-bottom: 8px;
}

.article-card-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.article-reveal-card:hover .article-card-title {
  color: var(--secondary-2);
}

/* Excerpt & Read More link reveal on hover */
.article-excerpt {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 18px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease, max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
}

.article-reveal-card:hover .article-excerpt {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.article-reveal-card:hover .article-read-more {
  color: var(--secondary-2);
  opacity: 1;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. OUR CERTIFICATIONS MARQUEE SECTION STYLES
   -------------------------------------------------------------------------- */

.certifications-section {
  padding: 80px 0 90px;
  background-color: var(--bg-color);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.certifications-header {
  margin-bottom: 40px;
}

.certifications-subtitle {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.certifications-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-gradient);
  margin: 10px auto 0;
  border-radius: var(--radius-pill);
}

/* Full Width Auto-Sliding Marquee */
.certifications-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: certMarquee 35s linear infinite;
  will-change: transform;
}

.certifications-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes certMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cert-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  transition: all var(--transition-fast);
  opacity: 0.7;
  filter: grayscale(100%);
}

.cert-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.cert-item img {
  max-height: 75px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-slide-content {
    margin-left: 100px;
    margin-right: 80px;
  }
}

@media (max-width: 991px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .esg-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-social-sidebar,
  .hero-slider-counter {
    display: none;
  }

  .hero-slide-content {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 120px;
    max-width: 100%;
    text-align: center;
  }

  .hero-title .title-line-2 {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual-col {
    padding-right: 30px;
    padding-bottom: 40px;
    max-width: 550px;
    margin: 0 auto;
  }

  .about-features-block {
    grid-template-columns: 1fr;
  }

  .expandable-products-wrapper {
    flex-direction: column;
    height: auto;
  }

  .product-expand-card {
    height: 280px;
    flex: none !important;
  }

  .product-expand-card .card-content-collapsed {
    display: none;
  }

  .product-expand-card .card-content-expanded {
    opacity: 1;
    transform: translateY(0);
    padding: 24px;
  }

  .product-expand-card .category-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-image-card.main-card {
    height: 340px;
  }

  .about-image-card.overlap-card {
    height: 220px;
  }

  .about-footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}