/* Enhanced Styles for FourJ Website - New Sections */

/* ========================================
   GLOBAL ENHANCEMENTS - MATCHING ORIGINAL COLOR SCHEME
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section_header {
  text-align: center;
  margin-bottom: 60px;
}

.section_header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.section_header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff5600, #ff8800);
  border-radius: 2px;
}

.section_header p {
  font-size: 18px;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced CTA Buttons - Matching Original Style */
.btn_primary, .btn_secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 180px;
}

.btn_primary {
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  border: none;
}

.btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 86, 0, 0.4);
}

.btn_secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 86, 0, 0.5);
}

.btn_secondary:hover {
  background: rgba(255, 86, 0, 0.1);
  border-color: #ff5600;
  transform: translateY(-3px);
}

.cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Enhanced Section Backgrounds */
.section__bg {
  position: relative;
}

.section__bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.8);
  z-index: 1;
}

.section__bg > * {
  position: relative;
  z-index: 2;
}

/* ========================================
   EDUCATION SECTION STYLES
   ======================================== */
.education_section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.education_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.education_item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.education_item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.education_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.education_item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.education_item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.education_item ul {
  list-style: none;
  text-align: left;
}

.education_item ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 25px;
}

.education_item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5600;
  font-weight: bold;
}

/* ========================================
   SUCCESS STORIES SECTION STYLES
   ======================================== */
.success_stories {
  padding: 80px 0;
  background: #0F0F0F;
}

.stories_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.story_card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.story_card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.story_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.trader_info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.trader_info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.story_stats {
  text-align: right;
}

.profit {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ff5600;
}

.period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.story_content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.story_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story_tags span {
  background: rgba(255, 86, 0, 0.2);
  color: #ff5600;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* ========================================
   GLOBAL MARKETS SECTION STYLES
   ======================================== */
.global_markets_section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.markets_showcase {
  margin-top: 60px;
}

.markets_intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.markets_intro h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.markets_intro p {
  font-size: 18px;
  color: #b8b8b8;
  line-height: 1.6;
}

.markets_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.market_card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.market_card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5600, #ff8800, #2196F3, #9C27B0);
}

.market_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 86, 0, 0.3);
}

.market_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.market_card:hover .market_icon {
  transform: scale(1.1);
}

.market_card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.market_card p {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}

.market_features {
  margin-bottom: 25px;
}

.feature_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #b8b8b8;
}

.feature_item i {
  color: #ff5600;
  font-size: 12px;
}

.market_stats {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ff5600;
  margin-bottom: 5px;
}

.stat .label {
  font-size: 12px;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   PLATFORM EXPERIENCE SECTION STYLES
   ======================================== */
.platform_experience {
  padding: 100px 0;
}

.experience_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience_text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.experience_text p {
  font-size: 18px;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 40px;
}

.experience_features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature_highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature_highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 86, 0, 0.3);
  transform: translateX(10px);
}

.feature_highlight i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.feature_highlight h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.feature_highlight p {
  font-size: 14px;
  color: #b8b8b8;
  margin: 0;
}

.experience_image {
  text-align: center;
}

.experience_image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.experience_image img:hover {
  transform: scale(1.02);
}

/* ========================================
   TIMELINE SECTION STYLES
   ======================================== */
.company_history {
  padding: 80px 0;
  background: #0F0F0F;
}

.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 50px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff5600, #2196F3, #FF9800, #9C27B0);
}

.timeline_item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}

.timeline_item:before {
  content: '';
  position: absolute;
  left: -35px;
  top: 10px;
  width: 12px;
  height: 12px;
  background: #ff5600;
  border-radius: 50%;
  border: 3px solid #0F0F0F;
}

.timeline_year {
  position: absolute;
  left: -70px;
  top: 0;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.timeline_content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.timeline_content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.timeline_content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ========================================
   LEADERSHIP SECTION STYLES
   ======================================== */
.leadership_section {
  padding: 80px 0;
}

.leadership_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.leader_card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.leader_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leader_photo {
  margin-bottom: 25px;
}

.photo_placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.leader_info h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.position {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.leader_info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.leader_credentials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.leader_credentials span {
  background: rgba(255, 86, 0, 0.2);
  color: #ff5600;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* ========================================
   VALUES DETAIL SECTION STYLES
   ======================================== */
.values_detail {
  padding: 80px 0;
  background: #0F0F0F;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.value_item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.value_item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.value_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FF9800, #F57C00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 25px;
}

.value_item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.value_item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.value_item ul {
  list-style: none;
}

.value_item ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 25px;
}

.value_item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF9800;
  font-weight: bold;
}

/* ========================================
   AWARDS SECTION STYLES
   ======================================== */
.awards_section {
  padding: 80px 0;
}

.awards_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.award_item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.award_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.award_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #FFD700, #FFA000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #333;
}

.award_item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.award_source {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.award_item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ========================================
   LIVE CHAT WIDGET STYLES
   ======================================== */
.live_chat_widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat_toggle {
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(255, 86, 0, 0.3);
  transition: all 0.3s ease;
}

.chat_toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 86, 0, 0.4);
}

.chat_window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat_window.active {
  display: flex;
}

.chat_header {
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat_header h4 {
  margin: 0;
  font-size: 18px;
}

.status {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 10px;
}

.chat_close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.chat_messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
}

.message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.message.user {
  align-items: flex-end;
}

.message.agent {
  align-items: flex-start;
}

.message_content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.message.user .message_content {
  background: #ff5600;
  color: white;
}

.message.agent .message_content {
  background: white;
  color: #333;
  border: 1px solid #e0e0e0;
}

.message_time {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
}

.chat_input {
  padding: 20px;
  background: white;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 10px;
}

.chat_input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
}

.chat_input button {
  background: #ff5600;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   SOCIAL MEDIA SECTION STYLES
   ======================================== */
.social_community {
  padding: 80px 0;
}

.social_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.social_item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.social_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.social_item:nth-child(1) .social_icon { background: linear-gradient(135deg, #0088cc, #006699); }
.social_item:nth-child(2) .social_icon { background: linear-gradient(135deg, #5865F2, #4752C4); }
.social_item:nth-child(3) .social_icon { background: linear-gradient(135deg, #FF0000, #CC0000); }
.social_item:nth-child(4) .social_icon { background: linear-gradient(135deg, #1DA1F2, #0d8bd9); }

.social_item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.social_item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social_link {
  display: inline-block;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.social_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 86, 0, 0.3);
}

.social_stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   SUPPORT RESOURCES SECTION STYLES
   ======================================== */
.support_resources {
  padding: 80px 0;
  background: #0F0F0F;
}

.resources_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.resource_item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.resource_item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.resource_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 25px;
}

.resource_item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.resource_item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource_item ul {
  list-style: none;
  margin-bottom: 25px;
}

.resource_item ul li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 25px;
}

.resource_item ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2196F3;
  font-weight: bold;
}

.resource_link {
  display: inline-block;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

/* ========================================
   EMERGENCY CONTACT SECTION STYLES
   ======================================== */
.emergency_contact {
  padding: 80px 0;
}

.emergency_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.emergency_item {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%);
  border: 2px solid rgba(255, 87, 34, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.emergency_item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 87, 34, 0.5);
  box-shadow: 0 15px 30px rgba(255, 87, 34, 0.2);
}

.emergency_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #FF5722, #E64A19);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.emergency_item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.emergency_number, .emergency_email {
  font-size: 20px;
  font-weight: bold;
  color: #FF5722;
  margin-bottom: 15px;
  display: block;
}

.emergency_item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.emergency_details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.emergency_note {
  margin-top: 50px;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.3);
  border-radius: 15px;
  padding: 30px;
}

.emergency_note h4 {
  color: #FF5722;
  margin-bottom: 20px;
  font-size: 18px;
}

.emergency_note ul {
  list-style: none;
}

.emergency_note ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 25px;
}

.emergency_note ul li:before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #FF5722;
  font-weight: bold;
}

/* ========================================
   PLAN DETAILS SECTION STYLES
   ======================================== */
.plan_details {
  padding: 80px 0;
}

.plan_details_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.plan_detail_card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.plan_detail_card.featured {
  border-color: rgba(76, 175, 80, 0.5);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
}

.plan_detail_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan_header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.plan_badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan_detail_card.featured .plan_badge {
  background: linear-gradient(135deg, #FF9800, #F57C00);
}

.plan_sections {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.plan_section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.plan_section ul {
  list-style: none;
}

.plan_section ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 25px;
}

.plan_section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5600;
  font-weight: bold;
}

.plan_section ul li:last-child:before {
  color: #FF5722;
  content: "✗";
}

/* ========================================
   SUCCESS METRICS SECTION STYLES
   ======================================== */
.success_metrics {
  padding: 80px 0;
  background: #0F0F0F;
}

.metrics_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.metric_item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.metric_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.metric_content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.metric_value {
  font-size: 36px;
  font-weight: bold;
  color: #ff5600;
  margin-bottom: 10px;
}

.metric_content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 14px;
}

.metric_details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.metric_details span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* ========================================
   PLAN TESTIMONIALS SECTION STYLES
   ======================================== */
.plan_testimonials {
  padding: 80px 0;
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial_card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial_card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.trader_info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.trader_info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.rating {
  display: flex;
  gap: 3px;
}

.rating i {
  color: #FFD700;
  font-size: 14px;
}

.testimonial_content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial_stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.testimonial_stats span {
  background: rgba(255, 86, 0, 0.2);
  color: #ff5600;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 500;
}

/* ========================================
   UPGRADE PATH SECTION STYLES
   ======================================== */
.upgrade_path {
  padding: 80px 0;
  background: #0F0F0F;
}

.upgrade_timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
  padding: 0 50px;
}

.upgrade_timeline:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff5600, #2196F3, #FF9800);
}

.upgrade_step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step_number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5600, #ff8800);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.step_content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  backdrop-filter: blur(10px);
}

.step_content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.step_content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.step_duration {
  background: rgba(255, 86, 0, 0.2);
  color: #ff5600;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.upgrade_benefits {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.upgrade_benefits h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.benefits_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit_item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit_item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.benefit_item i {
  color: #ff5600;
  font-size: 18px;
}

.benefit_item span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========================================
   ANIMATIONS AND EFFECTS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 86, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
  }
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.glow-effect {
  animation: glow 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #ff5600, #2196F3, #FF9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Morphism Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ========================================
   HOME PAGE LAYOUT IMPROVEMENTS
   ======================================== */
.part_six {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.part_six h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.part_six h1:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff5600, #ff8800);
  border-radius: 2px;
}

.part_six p {
  font-size: 18px;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Enhanced Hero Section */
.hero .content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #ff5600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .content p {
  font-size: 20px;
  color: #b8b8b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Enhanced About Us Section */
.about_us_section {
  padding: 80px 0;
}

.about_us_header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.about_us_header p {
  font-size: 18px;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 60px;
}

.about_us_main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about_us_image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about_us_text p {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about_us_features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about_feature {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about_feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 86, 0, 0.3);
}

.about_feature strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.about_feature p {
  font-size: 14px;
  color: #b8b8b8;
  margin: 0;
}

/* Enhanced Part Two Section */
.part_two {
  padding: 60px 0;
  text-align: center;
  background: #0F0F0F;
}

.second_content p {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

.second_content strong {
  color: #ff5600;
  font-weight: 700;
}

/* Enhanced Part Three Section */
.part_three {
  padding: 80px 0;
}

.part_three-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.column {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.column:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 86, 0, 0.3);
}

.column strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.column p {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.6;
  font-style: italic;
}

.column img {
  margin: 0 2px;
  width: 16px;
  height: 16px;
}

/* Enhanced Part Four Section */
.part_four {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.part__fout-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.part_four_content {
  margin-bottom: 40px;
}

.part_four_content strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.part_four_content p {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.6;
}

/* Enhanced Part Five Section */
.part_five {
  padding: 80px 0;
  background: #0F0F0F;
}

#part_five_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#part_five_column {
  text-align: center;
  position: relative;
}

#part_five_column .text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

#part_five_column:hover .text {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 86, 0, 0.3);
}

#part_five_column strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

#part_five_column p {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.6;
}

.part__five-layer {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .education_grid,
  .stories_grid,
  .markets_grid,
  .leadership_grid,
  .values_grid,
  .awards_grid,
  .social_grid,
  .resources_grid,
  .emergency_grid,
  .plan_details_grid,
  .metrics_grid,
  .testimonials_grid {
    grid-template-columns: 1fr;
  }

  .upgrade_timeline {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .upgrade_timeline:before {
    display: none;
  }

  .benefits_list {
    grid-template-columns: 1fr;
  }

  .chat_window {
    width: 300px;
    height: 400px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline_year {
    position: static;
    margin-bottom: 15px;
  }

  /* Home Page Mobile Responsive */
  .about_us_main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about_us_features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .part_four {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .part_three-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #part_five_container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero .content h1 {
    font-size: 36px;
  }

  .hero .content p {
    font-size: 18px;
  }

  .part_six h1 {
    font-size: 32px;
  }

  .part_six p {
    font-size: 16px;
  }

  /* Global Markets Mobile Responsive */
  .markets_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .markets_intro h3 {
    font-size: 24px;
  }

  .markets_intro p {
    font-size: 16px;
  }

  .market_card {
    padding: 30px 20px;
  }

  .market_icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .market_card h3 {
    font-size: 20px;
  }

  .market_card p {
    font-size: 14px;
  }

  /* Platform Experience Mobile Responsive */
  .experience_content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience_text h2 {
    font-size: 32px;
  }

  .experience_text p {
    font-size: 16px;
  }

  .feature_highlight {
    padding: 15px;
    gap: 15px;
  }

  .feature_highlight i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .feature_highlight h4 {
    font-size: 16px;
  }

  .feature_highlight p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .live_chat_widget {
    bottom: 20px;
    right: 20px;
  }

  .chat_window {
    width: 280px;
    height: 350px;
  }

  .education_section,
  .success_stories,
  .market_overview,
  .company_history,
  .leadership_section,
  .values_detail,
  .awards_section,
  .social_community,
  .support_resources,
  .emergency_contact,
  .plan_details,
  .success_metrics,
  .plan_testimonials,
  .upgrade_path {
    padding: 60px 0;
  }
}
