/*-----------------------------------*\
  #FUELTRADING.CSS - AMNU Fuel Trading Page Styles
\*-----------------------------------*/

/**
 * Fuel Trading-specific styling for AMNU Fuel Trading page
 */

/*-----------------------------------*\
  #FUEL TRADING HERO SECTION
\*-----------------------------------*/

.fueltrading-hero {
  background: linear-gradient(135deg, #192334 0%, #e51f30 100%);
  color: white;
  text-align: center;
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.fueltrading-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/fluel.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.fueltrading-hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.fueltrading-hero .subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  font-weight: 500;
}

/*-----------------------------------*\
  #FUEL TRADING CONTENT SECTION
\*-----------------------------------*/

.fueltrading-content {
  padding: 80px 0;
  background-color: #f8fafc;
  overflow-x: hidden;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(25, 35, 52, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.fueltrading-content h3 {
  color: #192334;
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  border-bottom: 3px solid #e51f30;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.fueltrading-content h3:first-of-type {
  margin-top: 0;
}

.fueltrading-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.fueltrading-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.fueltrading-content ol > li {
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #192334;
}

.fueltrading-content ol > li > ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.fueltrading-content ol > li > ul > li {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #4a5568;
  list-style-type: disc;
}

.value-list {
  background: #f7fafc;
  border-left: 4px solid #e51f30;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.value-list li {
  margin-bottom: 0.75rem;
  color: #2d3748;
  position: relative;
  padding-left: 1.5rem;
}

.value-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e51f30;
  font-weight: bold;
}

/*-----------------------------------*\
  #SPECIAL SECTIONS
\*-----------------------------------*/

.fueltrading-content .highlight-box {
  background: linear-gradient(135deg, #192334, #2d3748);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.fueltrading-content .highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(229, 31, 48, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.fueltrading-content .highlight-box h4 {
  color: #e51f30;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/*-----------------------------------*\
  #RESPONSIVE DESIGN
\*-----------------------------------*/

@media (max-width: 768px) {
  .fueltrading-hero {
    padding: 100px 0 60px 0;
  }

  .fueltrading-hero h2 {
    font-size: 2.5rem;
  }

  .fueltrading-hero .subtitle {
    font-size: 1.2rem;
  }

  .content-container {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .fueltrading-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .fueltrading-hero {
    padding: 80px 0 40px 0;
  }

  .fueltrading-hero h2 {
    font-size: 2rem;
  }

  .content-container {
    padding: 20px 15px;
    margin: 0 10px;
  }

  .fueltrading-content h3 {
    font-size: 1.4rem;
  }

  .fueltrading-content {
    padding: 40px 0;
  }
}
