/* ============================================
   ENERGY PAGE - Energy Solutions
   ============================================ */

/* ============================================
   HERO SECTION - ENERGY
   ============================================ */
.energy-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  padding: 80px 0 160px;
  background-color: #F1F3F5;
  overflow: hidden;
}

/* Background */
.energy-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.energy-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: #F1F3F5;
  z-index: 0;
}

.energy-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Container */
.energy-hero .container {
  position: relative;
  z-index: 2;
}

/* Glass Card */
.energy-hero__card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  max-width: 658px;
  min-width: 362px;
  padding: 40px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.65), rgba(241, 243, 245, 0.65));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid var(--color-white);
  border-radius: var(--radius-xl);
}

/* Text Content */
.energy-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.energy-hero__title {
  font-size: var(--h1-size);
  font-weight: var(--font-bold);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-letter-spacing);
  text-transform: uppercase;
  color: var(--color-gray-20);
  margin: 0;
}

.energy-hero__subtitle {
  font-size: var(--body-size);
  font-weight: var(--font-regular);
  line-height: var(--body-line-height);
  color: var(--color-gray-20);
  margin: 0;
}

/* ============================================
   RESPONSIVE - Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .energy-hero {
    min-height: 500px;
    padding: 60px 0 120px;
  }

  .energy-hero__card {
    max-width: 550px;
    gap: 30px;
    padding: 30px;
  }
}

/* ============================================
   RESPONSIVE - Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
  .energy-hero {
    min-height: 450px;
    padding: 40px 0 80px;
  }
  
  .energy-hero .container {
    padding: 0 20px;
  }

  .energy-hero__card {
    max-width: 100%;
    min-width: auto;
    gap: 24px;
    padding: 24px;
  }

  .energy-hero__text {
    gap: 16px;
  }
  
  .energy-hero__title {
    font-size: var(--h1-mobile-size); /* 30px */
    line-height: var(--h1-mobile-line-height);
    letter-spacing: var(--h1-mobile-letter-spacing);
  }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
  padding: 80px 0;
  background-color: var(--color-white);
}

.why-choose__title {
  font-size: var(--h2-size);
  font-weight: var(--font-bold);
  line-height: var(--h2-line-height);
  color: var(--color-gray-20);
  margin: 0 0 40px 0;
}

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

/* ============================================
   WHY CHOOSE - RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }
  
  .why-choose .container {
    padding: 0 20px;
  }

  .why-choose__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: 60px 0;
  background-color: var(--color-gray-95);
  position: relative;
  overflow: hidden;
}

/* Decorative graphic element */
.products__decoration {
    position: absolute;
    right: -100px;
    top: 35%;
    transform: translateY(-50%);
    width: 777px;
    height: 777px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.products .container {
  position: relative;
  z-index: 1;
}

.products__title {
  font-size: var(--h2-size);
  font-weight: var(--font-bold);
  line-height: var(--h2-line-height);
  color: var(--color-gray-20);
  margin: 0 0 40px 0;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Product Category Card */
.product-category-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(to right, var(--color-white) 0%, var(--color-gray-95) 100%);
  border: 1px solid var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}



.product-category-card__content {
  flex: 1;
  padding: 40px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-category-card__title {
  font-size: 24px;
  font-weight: var(--font-bold);
  line-height: 1.45;
  color: var(--color-gray-20);
  margin: 0;
}

.product-category-card__description {
  font-size: var(--body-size);
  font-weight: var(--font-regular);
  line-height: var(--body-line-height);
  color: var(--color-gray-20);
  margin: 0;
}

.product-category-card__image {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Brands Slider */
.products__brands {
  position: relative;
  height: 62px;
  margin-bottom: 40px;
  overflow: hidden;
}

.products__brands::before,
.products__brands::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.products__brands::before {
  left: 0;
  background: linear-gradient(to right, var(--color-gray-95) 0%, transparent 100%);
}

.products__brands::after {
  right: 0;
  background: linear-gradient(to left, var(--color-gray-95) 0%, transparent 100%);
}

.products__brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll-brands 30s linear infinite;
  width: fit-content;
}

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

.products__brands-logo {
  height: auto;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* CTA Button - centered */
.products > .container {
  text-align: center;
}

.products__title,
.products__grid {
  text-align: left;
}

.products__cta {
  display: inline-flex;
}

/* ============================================
   PRODUCTS - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products__grid {
    gap: 20px;
  }

  .product-category-card__content {
    padding: 30px;
  }

  .product-category-card__image {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 60px 0;
  }
  
  .products .container {
    padding: 0 20px;
  }

  .products__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .product-category-card {
    flex-direction: column;
  }

  .product-category-card__content {
    width: 100%;
    min-width: unset;
    padding: 30px;
  }
  
  .product-category-card__title {
    font-size: 22px;
  }

  .product-category-card__image {
    width: 100%;
    height: 200px;
  }

  .products__brands {
    margin-bottom: 30px;
  }
}

/* ============================================
   FAQ SECTION - Light variant
   ============================================ */
.faq--light {
  background-color: var(--color-white);
  padding: 80px 0;
}

.faq--light .faq__title {
  color: var(--color-gray-20);
}

/* Responsive */
@media (max-width: 1024px) {
  .faq--light {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .faq--light {
    padding: 60px 0;
  }
  
  .faq--light .container {
    padding: 0 20px;
  }
  
  .faq--light .faq__title {
    font-size: 28px;
  }
}

section.faq.faq--light.section-animate.section-animate--visible {
  background-color: var(--color-white);
}

/* ============================================
   DEALERS SECTION
   ============================================ */
.dealers {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Background */
.dealers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dealers__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dealers__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(241, 243, 245, 0.4);
  z-index: 1;
}

/* Content container */
.dealers .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

/* Text content */
.dealers__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 752px;
}

.dealers__title {
  font-size: var(--h2-size);
  font-weight: var(--font-bold);
  line-height: var(--h2-line-height);
  color: var(--color-gray-20);
  margin: 0;
}

.dealers__description {
  font-size: var(--body-size);
  font-weight: var(--font-regular);
  line-height: var(--body-line-height);
  color: var(--color-gray-20);
  margin: 0;
}

/* Cards grid */
.dealers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* Dealer Card - Glass effect */
.dealers-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: rgba(58, 58, 58, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid #666;
  border-radius: var(--radius-xl);
  min-width: 200px;
}

.dealers-card__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dealers-card__icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-gray-20);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.dealers-card__title {
  font-size: 20px;
  font-weight: var(--font-bold);
  line-height: 1.45;
  color: var(--color-white);
  margin: 0;
  flex: 1;
  min-width: 130px;
}

.dealers-card__text {
  font-size: var(--body-size);
  font-weight: var(--font-regular);
  line-height: var(--body-line-height);
  color: var(--color-white);
  margin: 0;
}

/* CTA Button */
.dealers__cta {
  width: 258px;
}

/* ============================================
   DEALERS - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .dealers {
    padding: 60px 0;
  }
  
  .dealers__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .dealers {
    padding: 60px 0;
  }
  
  .dealers .container {
    padding: 0 20px;
    gap: 30px;
  }
  
  .dealers__content {
    gap: 16px;
  }
  
  .dealers__title {
    font-size: 28px;
  }
  
  .dealers-card__title {
    font-size: 18px;
  }
}