
      /* ==========================================================================
   ASENSE LUXURY ACCORDION FOOTER - ULTRA-SMOOTH ANIMATION STYLESHEET
   Brand Palette: Primary Dark (#321926), Primary Gold (#e2b978), Secondary Gold (#be955a)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL CONTAINER & COMPACT SPACING VARIABLES
   -------------------------------------------------------------------------- */
   .asense_footer_discovery_hub {
    --asense_footer_bg_dark: #321926;
    --asense_footer_bg_elevated: #3d202f;
    --asense_footer_bg_card: #28131e;
    
    --asense_footer_gold_primary: #e2b978;
    --asense_footer_gold_secondary: #be955a;
    --asense_footer_gold_muted: rgba(226, 185, 120, 0.6);
    --asense_footer_gold_glow: rgba(226, 185, 120, 0.12);
    
    --asense_footer_text_light: #f9f6f0;
    --asense_footer_text_subtle: #d2c8bf;
    
    --asense_footer_border: rgba(190, 149, 90, 0.22);
    --asense_footer_border_gold: #be955a;
    
    --asense_footer_font_main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --asense_footer_radius: 6px;
    
    /* Smooth Luxury Curve Variable */
    --asense_footer_ease_luxury: cubic-bezier(0.25, 1, 0.5, 1);
    --asense_footer_transition: all 0.4s var(--asense_footer_ease_luxury);
    
    background-color: var(--asense_footer_bg_dark);
    color: var(--asense_footer_text_light);
    font-family: var(--asense_footer_font_main);
    padding: 2.75rem 1.25rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }
  
  .asense_footer_discovery_hub *,
  .asense_footer_discovery_hub *::before,
  .asense_footer_discovery_hub *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  .asense_footer_wrapper {
    max-width: 1320px;
    margin: 0 auto;
  }
  
  /* --------------------------------------------------------------------------
     2. BOOTSTRAP 5 ACCORDION (SMOOTH ANIMATIONS & ACCELERATION)
     -------------------------------------------------------------------------- */
  .asense_footer_accordion_group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
  }
  
  .asense_footer_accordion_item {
    background-color: var(--asense_footer_bg_elevated) !important;
    border: 1px solid var(--asense_footer_border) !important;
    border-radius: var(--asense_footer_radius) !important;
    overflow: hidden;
    transition: border-color 0.4s var(--asense_footer_ease_luxury), box-shadow 0.4s var(--asense_footer_ease_luxury);
    will-change: border-color, box-shadow;
  }
  
  .asense_footer_accordion_item:hover {
    border-color: var(--asense_footer_gold_secondary) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  }
  
  .asense_footer_accordion_header {
    margin: 0;
    width: 100%;
  }
  
  .asense_footer_accordion_btn.accordion-button {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background-color: var(--asense_footer_bg_elevated) !important;
    color: var(--asense_footer_gold_primary) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    padding: 1.1rem 1.35rem !important;
    box-shadow: none !important;
    border: none !important;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.4s var(--asense_footer_ease_luxury), color 0.4s var(--asense_footer_ease_luxury);
    will-change: background-color, color;
  }
  
  .asense_footer_accordion_title_text {
    flex: 1;
    text-align: left;
    padding-right: 1rem;
  }
  
  .asense_footer_accordion_btn.accordion-button:not(.collapsed) {
    background-color: var(--asense_footer_bg_card) !important;
    color: var(--asense_footer_gold_primary) !important;
    border-bottom: 1px solid var(--asense_footer_border) !important;
  }
  
  /* Accordion Arrow - Extreme Right Alignment and Synchronized Smooth Rotation */
  .asense_footer_accordion_btn.accordion-button::after {
    margin-left: auto !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    background-size: 1.25rem !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e2b978'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    transition: transform 0.45s var(--asense_footer_ease_luxury) !important;
    transform-origin: center;
    will-change: transform;
  }
  
  /* Rotate Chevron Cleanly on Open State */
  .asense_footer_accordion_btn.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) !important;
  }
  
  .asense_footer_accordion_btn.accordion-button:hover {
    color: var(--asense_footer_gold_primary) !important;
    background-color: var(--asense_footer_bg_card) !important;
  }
  
  /* Smooth Accordion Body Slide Engine */
  .accordion-collapse.collapsing {
    transition: height 0.45s var(--asense_footer_ease_luxury) !important;
    will-change: height;
    overflow: hidden;
  }
  
  .accordion-collapse.collapse {
    transition: opacity 0.35s var(--asense_footer_ease_luxury), transform 0.35s var(--asense_footer_ease_luxury);
  }
  
  .accordion-collapse.collapse:not(.show) {
    opacity: 0;
    transform: translateY(-4px);
  }
  
  .accordion-collapse.collapse.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s var(--asense_footer_ease_luxury) 0.05s, transform 0.45s var(--asense_footer_ease_luxury) 0.05s;
  }
  
  .asense_footer_accordion_body {
    padding: 1.35rem 1.35rem;
    background-color: var(--asense_footer_bg_card);
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  
  /* --------------------------------------------------------------------------
     3. INNER TAB NAVIGATION (Accordion 4 - Design Ideas)
     -------------------------------------------------------------------------- */
  .asense_footer_tab_nav.nav-tabs {
    border-bottom: 1px solid var(--asense_footer_border);
    display: flex;
    gap: 0.4rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .asense_footer_tab_item {
    margin-bottom: 0;
  }
  
  .asense_footer_tab_btn.nav-link {
    background: transparent !important;
    color: var(--asense_footer_text_subtle) !important;
    border: 1px solid var(--asense_footer_border) !important;
    border-radius: var(--asense_footer_radius) !important;
    padding: 0.45rem 1rem !important;
    font-size: 0.825rem !important;
    font-weight: 500 !important;
    transition: var(--asense_footer_transition) !important;
    cursor: pointer;
  }
  
  .asense_footer_tab_btn.nav-link:hover {
    color: var(--asense_footer_gold_primary) !important;
    border-color: var(--asense_footer_gold_secondary) !important;
    background-color: var(--asense_footer_gold_glow) !important;
  }
  
  .asense_footer_tab_btn.nav-link.active {
    background-color: var(--asense_footer_gold_primary) !important;
    color: var(--asense_footer_bg_dark) !important;
    border-color: var(--asense_footer_gold_primary) !important;
    font-weight: 700 !important;
  }
  
  .asense_footer_scrollable_nav.nav-tabs {
    flex-wrap: wrap;
  }
  
  .asense_footer_tab_content {
    padding-top: 0.25rem;
  }
  
  .tab-pane.fade {
    transition: opacity 0.35s var(--asense_footer_ease_luxury), transform 0.35s var(--asense_footer_ease_luxury);
    transform: translateY(4px);
  }
  
  .tab-pane.fade.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* --------------------------------------------------------------------------
     4. CONTENT GRIDS (Projects, Blogs, Chips)
     -------------------------------------------------------------------------- */
  
  /* Projects Grid */
  .asense_footer_grid_projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .asense_footer_link_card {
    display: flex;
    align-items: center;
    background: var(--asense_footer_bg_elevated);
    border: 1px solid var(--asense_footer_border);
    border-radius: var(--asense_footer_radius);
    padding: 0.75rem 1rem;
    color: var(--asense_footer_text_subtle);
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 500;
    line-height: 1.4;
    transition: var(--asense_footer_transition);
  }
  
  .asense_footer_link_card:hover {
    background-color: var(--asense_footer_bg_dark);
    color: var(--asense_footer_gold_primary);
    border-color: var(--asense_footer_gold_secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }
  
  /* Blogs Grid */
  .asense_footer_grid_blogs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .asense_footer_blog_card {
    display: block;
    background: var(--asense_footer_bg_elevated);
    border: 1px solid var(--asense_footer_border);
    border-radius: var(--asense_footer_radius);
    padding: 0.85rem 1rem;
    color: var(--asense_footer_text_light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.45;
    transition: var(--asense_footer_transition);
  }
  
  .asense_footer_blog_card:hover {
    background-color: var(--asense_footer_bg_dark);
    color: var(--asense_footer_gold_primary);
    border-color: var(--asense_footer_gold_secondary);
    transform: translateY(-2px);
  }
  
  /* Category Chips Grid */
  .asense_footer_chips_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }
  
  .asense_footer_chip {
    display: inline-flex;
    align-items: center;
    background-color: var(--asense_footer_bg_elevated);
    border: 1px solid var(--asense_footer_border);
    border-radius: 24px;
    padding: 0.4rem 0.95rem;
    color: var(--asense_footer_text_subtle);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--asense_footer_transition);
  }
  
  .asense_footer_chip:hover {
    background-color: var(--asense_footer_gold_primary);
    color: var(--asense_footer_bg_dark);
    border-color: var(--asense_footer_gold_primary);
    transform: translateY(-1px);
    font-weight: 600;
  }
  
  /* --------------------------------------------------------------------------
     5. INFORMATIONAL CONTENT SECTION (Why Choose Asense)
     -------------------------------------------------------------------------- */
  .asense_footer_info_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .asense_footer_info_card {
    background: var(--asense_footer_bg_elevated);
    border: 1px solid var(--asense_footer_border);
    border-radius: var(--asense_footer_radius);
    padding: 1.35rem 1.5rem;
  }
  
  .asense_footer_info_title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--asense_footer_gold_primary);
    margin-bottom: 0.65rem;
    line-height: 1.3;
    border-bottom: 1px solid var(--asense_footer_border);
    padding-bottom: 0.5rem;
  }
  
  .asense_footer_info_text {
    font-size: 0.85rem;
    color: var(--asense_footer_text_subtle);
    line-height: 1.6;
  }
  
  /* --------------------------------------------------------------------------
     6. 5 EASY STEPS TIMELINE
     -------------------------------------------------------------------------- */
  .asense_footer_steps_header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
  }
  
  .asense_footer_steps_main_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--asense_footer_gold_primary);
    margin-bottom: 0.35rem;
  }
  
  .asense_footer_steps_subtitle {
    font-size: 0.85rem;
    color: var(--asense_footer_text_subtle);
  }
  
  .asense_footer_steps_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
  
  .asense_footer_step_card {
    background: var(--asense_footer_bg_elevated);
    border: 1px solid var(--asense_footer_border);
    border-radius: var(--asense_footer_radius);
    padding: 1.1rem 0.85rem;
    transition: var(--asense_footer_transition);
    display: flex;
    flex-direction: column;
  }
  
  .asense_footer_step_card:hover {
    transform: translateY(-3px);
    border-color: var(--asense_footer_gold_secondary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
  
  .asense_footer_step_badge {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--asense_footer_gold_secondary);
    line-height: 1;
    margin-bottom: 0.6rem;
  }
  
  .asense_footer_step_title {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--asense_footer_gold_primary);
    margin-bottom: 0.45rem;
    line-height: 1.3;
  }
  
  .asense_footer_step_desc {
    font-size: 0.775rem;
    color: var(--asense_footer_text_subtle);
    line-height: 1.45;
  }
  
  /* --------------------------------------------------------------------------
     7. SERVICE LOCATIONS GRID
     -------------------------------------------------------------------------- */
  .asense_footer_locations_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }
  
  .asense_footer_location_tag {
    display: inline-block;
    background: var(--asense_footer_bg_elevated);
    border: 1px solid var(--asense_footer_border);
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    color: var(--asense_footer_text_subtle);
    text-decoration: none;
    font-size: 0.775rem;
    font-weight: 400;
    transition: var(--asense_footer_transition);
  }
  
  .asense_footer_location_tag:hover {
    background: var(--asense_footer_bg_dark);
    color: var(--asense_footer_gold_primary);
    border-color: var(--asense_footer_gold_secondary);
    transform: translateY(-1px);
  }
  
  /* --------------------------------------------------------------------------
     8. RESPONSIVE MEDIA QUERIES
     -------------------------------------------------------------------------- */
  
  @media screen and (max-width: 1200px) {
    .asense_footer_grid_projects {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .asense_footer_steps_grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media screen and (max-width: 992px) {
    .asense_footer_discovery_hub {
      padding: 2.25rem 1rem;
    }
  
    .asense_footer_info_grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .asense_footer_steps_grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .asense_footer_accordion_btn.accordion-button {
      font-size: 1rem !important;
      padding: 1rem 1.15rem !important;
    }
  
    .asense_footer_accordion_body {
      padding: 1.15rem 1rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .asense_footer_grid_projects,
    .asense_footer_grid_blogs {
      grid-template-columns: 1fr;
    }
  
    .asense_footer_steps_grid {
      grid-template-columns: 1fr;
    }
  
    .asense_footer_steps_main_title {
      font-size: 1.15rem;
    }
  
    .asense_footer_scrollable_nav.nav-tabs {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      -webkit-overflow-scrolling: touch;
    }
  
    .asense_footer_scrollable_nav .asense_footer_tab_btn.nav-link {
      white-space: nowrap;
    }
  }
  
  @media screen and (max-width: 576px) {
    .asense_footer_discovery_hub {
      padding: 1.75rem 0.6rem;
    }
  
    .asense_footer_accordion_btn.accordion-button {
      font-size: 0.9rem !important;
      padding: 0.9rem 0.85rem !important;
    }
  
    .asense_footer_accordion_body {
      padding: 1rem 0.75rem;
    }
  
    .asense_footer_link_card {
      font-size: 0.775rem;
      padding: 0.65rem 0.85rem;
    }
  
    .asense_footer_chip {
      width: 100%;
      justify-content: center;
      padding: 0.4rem 0.75rem;
    }
  
    .asense_footer_location_tag {
      width: 100%;
      text-align: center;
    }
  }