/* ========================================
   SECTORS PAGE - PREMIUM COMPACT DESIGN
   Classic, timeless, and space-efficient
   ======================================== */

/* ========================================
   PAGE FOUNDATION
   ======================================== */

.sectors_page__ {
  background-color: #FAFAFA;
  min-height: 100vh;
}

/* ========================================
   PAGE HEADER SECTION
   ======================================== */

.page_header_section__ {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 48px 0 40px;
  border-bottom: 1px solid #E8E8E8;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .page_header_section__ {
    padding: 32px 0 28px;
  }
}

@media only screen and (max-width: 767px) {
  .page_header_section__ {
    padding: 24px 0 20px;
  }
}

.page_header_content__ {
  max-width: 900px;
}

/* Breadcrumb Navigation */
.breadcrumb_nav__ {
  margin-bottom: 16px;
}

.breadcrumb__ {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #606060;
}

@media only screen and (max-width: 767px) {
  .breadcrumb__ {
    font-size: 13px;
  }
}

.breadcrumb_item__ {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb_item__ a {
  color: #058C4C;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb_item__ a:hover {
  color: #046838;
  text-decoration: underline;
}

.breadcrumb_item__:not(:last-child)::after {
  content: "/";
  color: #C0C0C0;
  margin-left: 8px;
}

.breadcrumb_item__.active {
  color: #343C57;
  font-weight: 500;
}

/* Page Title */
.page_title__ {
  font-size: 42px;
  font-weight: 600;
  color: #00235C;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media only screen and (max-width: 991px) {
  .page_title__ {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .page_title__ {
    font-size: 28px;
  }
}

.page_subtitle__ {
  font-size: 16px;
  color: #606060;
  margin: 0;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .page_subtitle__ {
    font-size: 14px;
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section_header__ {
  margin-bottom: 32px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .section_header__ {
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .section_header__ {
    margin-bottom: 20px;
  }
}

.section_title__ {
  font-size: 32px;
  font-weight: 600;
  color: #00235C;
  margin-bottom: 8px;
  line-height: 1.3;
}

@media only screen and (max-width: 991px) {
  .section_title__ {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title__ {
    font-size: 24px;
  }
}

.section_description__ {
  font-size: 15px;
  color: #606060;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .section_description__ {
    font-size: 14px;
  }
}

/* ========================================
   FEATURED SECTORS SECTION
   ======================================== */

.featured_sectors_section__ {
  padding: 56px 0;
  background-color: #FFFFFF;
}

@media only screen and (max-width: 991px) {
  .featured_sectors_section__ {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .featured_sectors_section__ {
    padding: 32px 0;
  }
}

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

@media only screen and (max-width: 991px) {
  .featured_grid__ {
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .featured_grid__ {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================
   POPULAR SECTORS SECTION
   ======================================== */

.popular_sectors_section__ {
  padding: 56px 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 991px) {
  .popular_sectors_section__ {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .popular_sectors_section__ {
    padding: 32px 0;
  }
}

.sectors_grid__ {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media only screen and (max-width: 1199px) {
  .sectors_grid__ {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .sectors_grid__ {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .sectors_grid__ {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SECTOR CARDS
   ======================================== */

.sector_card__ {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sector_card__:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 35, 92, 0.12);
  border-color: #D0D0D0;
  text-decoration: none;
}

/* Featured Card Variant */
.featured_card__ {
  min-height: 280px;
}

@media only screen and (max-width: 767px) {
  .featured_card__ {
    min-height: 240px;
  }
}

/* Card Image Container */
.card_image__ {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
  background: linear-gradient(135deg, #F8F9FA 0%, #E8E8E8 100%);
}

.featured_card__ .card_image__ {
  padding-bottom: 56.25%; /* 16:9 for featured */
}

.card_image__ img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector_card__:hover .card_image__ img {
  transform: scale(1.08);
}

/* Card Overlay */
.card_overlay__ {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 35, 92, 0.7) 100%
  );
  transition: opacity 0.35s ease;
}

.sector_card__:hover .card_overlay__ {
  opacity: 0.85;
}

/* Placeholder Image */
.placeholder_image__ {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}

/* Card Content */
.card_content__ {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .card_content__ {
    padding: 16px;
  }
}

.featured_card__ .card_content__ {
  padding: 24px;
}

@media only screen and (max-width: 767px) {
  .featured_card__ .card_content__ {
    padding: 20px;
  }
}

/* Card Title */
.card_title__ {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .card_title__ {
    font-size: 15px;
  }
}

.featured_card__ .card_title__ {
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .featured_card__ .card_title__ {
    font-size: 18px;
  }
}

.sector_card__:hover .card_title__ {
  transform: translateX(4px);
}

/* Card Badge */
.card_badge__ {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(5, 140, 76, 0.95);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   ADDITIONAL SECTORS SECTION
   ======================================== */

.additional_sectors_section__ {
  padding: 56px 0;
  background-color: #FFFFFF;
}

@media only screen and (max-width: 991px) {
  .additional_sectors_section__ {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .additional_sectors_section__ {
    padding: 32px 0;
  }
}

/* Compact Sectors List */
.compact_sectors_list__ {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .compact_sectors_list__ {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .compact_sectors_list__ {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.sectors_column__ {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Compact Sector Item */
.compact_sector_item__ {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .compact_sector_item__ {
    padding: 12px 14px;
  }
}

.compact_sector_item__:hover {
  background: #F8F9FA;
  border-color: #058C4C;
  box-shadow: 0 2px 8px rgba(5, 140, 76, 0.08);
  transform: translateX(4px);
  text-decoration: none;
}

/* Sector Icon */
.sector_icon__ {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #058C4C;
  transition: transform 0.25s ease;
}

.compact_sector_item__:hover .sector_icon__ {
  transform: scale(1.1);
}

/* Sector Name */
.sector_name__ {
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
  color: #343C57;
  line-height: 1.4;
  transition: color 0.25s ease;
}

@media only screen and (max-width: 767px) {
  .sector_name__ {
    font-size: 14px;
  }
}

.compact_sector_item__:hover .sector_name__ {
  color: #00235C;
}

/* Sector Arrow */
.sector_arrow__ {
  flex-shrink: 0;
  font-size: 16px;
  color: #C0C0C0;
  font-weight: 600;
  transition: all 0.25s ease;
}

.compact_sector_item__:hover .sector_arrow__ {
  color: #058C4C;
  transform: translateX(4px);
}

/* View All Wrapper */
.view_all_wrapper__ {
  text-align: center;
  padding-top: 16px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta_section__ {
  padding: 64px 0;
  background: linear-gradient(135deg, #00235C 0%, #001940 100%);
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .cta_section__ {
    padding: 48px 0;
  }
}

@media only screen and (max-width: 767px) {
  .cta_section__ {
    padding: 40px 0;
  }
}

.cta_section__::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%, 
    rgba(5, 140, 76, 0.1) 0%, 
    transparent 50%
  );
  pointer-events: none;
}

.cta_content__ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .cta_content__ {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}

.cta_text__ {
  flex: 1;
  max-width: 600px;
}

.cta_title__ {
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media only screen and (max-width: 991px) {
  .cta_title__ {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .cta_title__ {
    font-size: 24px;
  }
}

.cta_description__ {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .cta_description__ {
    font-size: 15px;
  }
}

.cta_buttons__ {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .cta_buttons__ {
    flex-direction: column;
    width: 100%;
  }
}

.cta_secondary__ {
  height: 58px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .cta_secondary__ {
    width: 100%;
  }
}

.cta_secondary__:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media only screen and (max-width: 991px) {
  .sectors_page__ {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sectors_page__ {
    font-size: 14px;
  }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Focus States */
.sector_card__:focus-visible,
.compact_sector_item__:focus-visible {
  outline: 3px solid #058C4C;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .sector_card__,
  .compact_sector_item__,
  .card_image__ img,
  .card_title__,
  .sector_arrow__,
  .sector_icon__ {
    transition: none;
  }
}

/* Print Styles */
@media print {
  .cta_section__,
  .footer__,
  .main_header__ {
    display: none;
  }
  
  .sector_card__,
  .compact_sector_item__ {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ========================================
   THEME CONSISTENCY
   ======================================== */

/* Ensuring consistent hover states across light theme */
.sector_card__:active {
  transform: translateY(-2px);
}

.compact_sector_item__:active {
  transform: translateX(2px);
}

/* Smooth color transitions for professional feel */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
