.elementor-614 .elementor-element.elementor-element-63509f8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-614 .elementor-element.elementor-element-052fd0e{text-align:center;}.elementor-614 .elementor-element.elementor-element-052fd0e .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-weight:500;line-height:25px;color:var( --e-global-color-secondary );}.elementor-614 .elementor-element.elementor-element-59e8910{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:1px 0px 1px 0px;--border-top-width:1px;--border-right-width:0px;--border-bottom-width:1px;--border-left-width:0px;border-color:#D4AF374D;--border-color:#D4AF374D;--padding-top:80px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}.elementor-614 .elementor-element.elementor-element-59e8910:not(.elementor-motion-effects-element-type-background), .elementor-614 .elementor-element.elementor-element-59e8910 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6F0DE70;}.elementor-614 .elementor-element.elementor-element-0be0110{text-align:center;}.elementor-614 .elementor-element.elementor-element-0be0110 .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-weight:500;line-height:25px;color:var( --e-global-color-secondary );}/* Start custom CSS for html, class: .elementor-element-35b0e37 */<style>
  /* --- Import Montserrat Font --- */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

  /* --- Container Setup --- */
  .skygge-features-section {
    position: relative;
    width: 100%;
    min-height: 600px; 
    background-color: #050202;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 5rem 0;
  }

  .skygge-features-section * {
    box-sizing: border-box;
  }

  /* --- Dynamic Background Images --- */
  .feature-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .feature-bg {
    position: absolute;
    inset: -5%; 
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 6s linear;
    transform: scale(1);
    will-change: transform, opacity;
  }

  .feature-bg.active {
    opacity: 1;
    transform: scale(1.05); /* Premium slow zoom */
  }

  /* --- Light Overlay --- */
  .feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Clean dark tint for perfect readability */
    z-index: 2;
  }

  /* --- Main Content Grid --- */
  .feature-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 3rem;
    align-items: stretch;
  }

  /* --- Left Side: Frosted Glass Menu (Desktop & Mobile) --- */
  .feature-nav-list {
    flex: 0 0 32%; 
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 1.5rem 0;
    list-style: none;
    
    /* Frosted Glass Effect */
    background: rgba(20, 5, 10, 0.45); /* Subtle corporate burgundy tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .feature-nav-item {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
  }

  /* Gold Indicator Line */
  .feature-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; 
    width: 3px;
    height: 100%;
    background-color: #D4AF37; 
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .feature-nav-item:hover,
  .feature-nav-item.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 100%);
    padding-left: 2.2rem; /* Indent effect */
  }

  .feature-nav-item.active {
    color: #D4AF37; /* Gold Text when active */
  }

  .feature-nav-item.active::before {
    transform: scaleY(1);
  }

  /* --- Right Side: Frosted Glass Content Box --- */
  .feature-details-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .feature-detail-box {
    grid-area: 1 / 1 / 2 / 2; /* Forces all content boxes to overlap in the same space */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Frosted Glass Effect */
    background: rgba(20, 5, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold top accent */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .feature-detail-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
  }

  .detail-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .detail-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem); 
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-wrap: balance;
  }

  .detail-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #eaeaea;
    margin: 0;
    font-weight: 500;
  }

  /* --- Mobile Redesign: Stacked Vertical List --- */
  @media (max-width: 992px) {
    .skygge-features-section {
      padding: 3rem 0;
      min-height: auto;
    }
    
    .feature-content-wrapper {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    /* Mobile Menu: Full vertical list visible at all times */
    .feature-nav-list {
      flex: 0 0 auto;
      width: 100%;
      padding: 1rem 0;
    }

    /* Adjust padding for smaller screens */
    .feature-nav-item {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem; /* Slightly smaller to fit nicely */
    }

    .feature-nav-item:hover,
    .feature-nav-item.active {
      padding-left: 1.8rem;
    }

    .feature-details-container {
      width: 100%;
    }

    .feature-detail-box {
      padding: 2rem 1.5rem;
    }
  }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-36a9752 */<style>
  /* --- Import Montserrat Font --- */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

  /* --- Container Setup --- */
  .skygge-features-section {
    position: relative;
    width: 100%;
    min-height: 600px; 
    background-color: #050202;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 5rem 0;
  }

  .skygge-features-section * {
    box-sizing: border-box;
  }

  /* --- Dynamic Background Images --- */
  .feature-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .feature-bg {
    position: absolute;
    inset: -5%; 
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 6s linear;
    transform: scale(1);
    will-change: transform, opacity;
  }

  .feature-bg.active {
    opacity: 1;
    transform: scale(1.05); /* Premium slow zoom */
  }

  /* --- Light Overlay --- */
  .feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Clean dark tint for perfect readability */
    z-index: 2;
  }

  /* --- Main Content Grid --- */
  .feature-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 3rem;
    align-items: stretch;
  }

  /* --- Left Side: Frosted Glass Menu (Desktop & Mobile) --- */
  .feature-nav-list {
    flex: 0 0 32%; 
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 1.5rem 0;
    list-style: none;
    
    /* Frosted Glass Effect */
    background: rgba(20, 5, 10, 0.45); /* Subtle corporate burgundy tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .feature-nav-item {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
  }

  /* Gold Indicator Line */
  .feature-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; 
    width: 3px;
    height: 100%;
    background-color: #D4AF37; 
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .feature-nav-item:hover,
  .feature-nav-item.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 100%);
    padding-left: 2.2rem; /* Indent effect */
  }

  .feature-nav-item.active {
    color: #D4AF37; /* Gold Text when active */
  }

  .feature-nav-item.active::before {
    transform: scaleY(1);
  }

  /* --- Right Side: Frosted Glass Content Box --- */
  .feature-details-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .feature-detail-box {
    grid-area: 1 / 1 / 2 / 2; /* Forces all content boxes to overlap in the same space */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Frosted Glass Effect */
    background: rgba(20, 5, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold top accent */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .feature-detail-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
  }

  .detail-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .detail-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem); 
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-wrap: balance;
  }

  .detail-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #eaeaea;
    margin: 0;
    font-weight: 500;
  }

  /* --- Mobile Redesign: Stacked Vertical List --- */
  @media (max-width: 992px) {
    .skygge-features-section {
      padding: 3rem 0;
      min-height: auto;
    }
    
    .feature-content-wrapper {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    /* Mobile Menu: Full vertical list visible at all times */
    .feature-nav-list {
      flex: 0 0 auto;
      width: 100%;
      padding: 1rem 0;
    }

    /* Adjust padding for smaller screens */
    .feature-nav-item {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem; /* Slightly smaller to fit nicely */
    }

    .feature-nav-item:hover,
    .feature-nav-item.active {
      padding-left: 1.8rem;
    }

    .feature-details-container {
      width: 100%;
    }

    .feature-detail-box {
      padding: 2rem 1.5rem;
    }
  }
</style>/* End custom CSS */