
    /* FORCE DESKTOP NAVIGATION STYLING - OVERRIDE CACHE */
    @media (min-width: 992px) {
      /* Hide mobile navigation */
      .navmenu.mobile-nav-visible,
      .navmenu.d-xl-none,
      #navmenu-mobile,
      header + .navmenu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
      }
      
      /* Show desktop navigation */
      .navmenu.d-none.d-xl-block {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
      }
      
      /* Desktop navigation layout */
      .navmenu.d-none.d-xl-block ul {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 15px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
      }
      
      .navmenu.d-none.d-xl-block li {
        display: block !important;
        margin: 0 !important;
        width: auto !important;
      }
      
      .navmenu.d-none.d-xl-block a {
        display: block !important;
        padding: 8px 12px !important;
        color: #495057 !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        border-radius: 6px !important;
        background: transparent !important;
        border: 1px solid transparent !important;
        white-space: nowrap !important;
        transition: all 0.3s ease !important;
      }
      
      .navmenu.d-none.d-xl-block a:hover {
        background: rgba(0, 123, 255, 0.1) !important;
        color: #007bff !important;
      }
      
      .navmenu.d-none.d-xl-block a.active {
        background: #007bff !important;
        color: #fff !important;
      }
      
      /* Hide ALL icons on desktop */
      .navmenu.d-none.d-xl-block a i {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0 !important;
      }
    }
    
    .animated-title {
      overflow: hidden;
      white-space: nowrap;
    }

    .title-word {
      display: inline-block;
      opacity: 0;
      transform: translateX(-50px) scale(0.8);
      animation: slideInFluid 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    /* Fluid timing - each word appears 0.3s after the previous */
    .title-word:nth-child(1) {
      animation-delay: 0.5s;
    }

    /* Market */
    .title-word:nth-child(2) {
      animation-delay: 0.8s;
    }

    /* & */
    .title-word:nth-child(3) {
      animation-delay: 1.1s;
    }

    /* Portfolio */
    .title-word:nth-child(4) {
      animation-delay: 1.4s;
    }

    /* Analysis */
    .title-word:nth-child(5) {
      animation-delay: 1.7s;
    }

    /* With AI */
    /* AI Highlight styling */
    .title-word.ai-highlight {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 0.7em;
      text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

    /* AI Suffix styling for logo */
    .ai-suffix {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    /* AI Market Intelligence Section Styles */
    .ai-section {
      background: #1a2a7a !important;
      padding: 80px 0;
      position: relative;
    }

    /* Force override for Market Intelligence section */
    section#ai-market-intelligence.ai-section {
      background: #1a2a7a !important;
    }

    .ai-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"viewBox="0 0 100 100"><defs><pattern id="grid"width="10"height="10"patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10"fill="none"stroke="rgba(212,175,55,0.1)"stroke-width="0.5"/></pattern></defs><rect width="100"height="100"fill="url(%23grid)"/></svg>');
      opacity: 0.3;
    }

    .ai-heading {
      color: #ffffff;
      font-size: 2.5rem;
      font-weight: 700;
      position: relative;
      z-index: 2;
    }

    .ai-badge {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      color: #1a1a2e;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-left: 15px;
      text-shadow: none;
    }

    .ai-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      padding: 25px;
      height: 100%;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .ai-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.4);
      box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    }

    .ai-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .ai-card-title {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: 600;
      margin: 0;
    }

    .ai-timestamp {
      color: rgba(212, 175, 55, 0.8);
      font-size: 0.85rem;
      font-weight: 500;
    }

    .news-item {
      margin-bottom: 20px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .news-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(5px);
    }

    .news-category {
      color: #D4AF37;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .news-headline {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .news-summary {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .news-impact {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .impact-label {
      padding: 4px 8px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .impact-label.positive {
      background: rgba(34, 197, 94, 0.2);
      color: #22c55e;
    }

    .impact-label.neutral {
      background: rgba(156, 163, 175, 0.2);
      color: #9ca3af;
    }

    .impact-label.negative {
      background: rgba(239, 68, 68, 0.2);
      color: #ef4444;
    }

    .impact-score {
      color: #D4AF37;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .driver-item {
      margin-bottom: 20px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .driver-item:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .driver-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .driver-icon {
      font-size: 1.2rem;
      margin-right: 10px;
    }

    .driver-name {
      color: #ffffff;
      font-weight: 600;
      font-size: 1rem;
      flex-grow: 1;
    }

    .driver-trend {
      font-size: 1.2rem;
      font-weight: bold;
    }

    .driver-trend.positive {
      color: #22c55e;
    }

    .driver-trend.negative {
      color: #ef4444;
    }

    .driver-trend.neutral {
      color: #9ca3af;
    }

    .driver-analysis p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .driver-confidence {
      margin-top: 10px;
    }

    .confidence-label {
      color: rgba(212, 175, 55, 0.8);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .confidence-bar {
      width: 100%;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      margin-top: 5px;
      overflow: hidden;
    }

    .confidence-fill {
      height: 100%;
      background: linear-gradient(90deg, #D4AF37 0%, #A67C00 100%);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .ai-insights-summary {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      padding: 25px;
      position: relative;
      z-index: 2;
    }

    .insights-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .insights-title {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: 600;
      margin: 0;
    }

    .insights-content {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .outlook-item {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .outlook-item:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .outlook-section-title {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .outlook-section-title:nth-child(1) {
      color: #60a5fa;
    }

    .outlook-section-title:nth-child(2) {
      color: #fbbf24;
    }

    .outlook-section-title:nth-child(3) {
      color: #a78bfa;
    }

    .outlook-text {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      line-height: 1.6;
      font-weight: 400;
    }

    .outlook-text.positive {
      color: #4ade80;
      font-weight: 500;
    }

    .outlook-text.neutral {
      color: #fbbf24;
      font-weight: 500;
    }

    .outlook-text.warning {
      color: #f87171;
      font-weight: 500;
    }

    /* Enhanced outlook section styling */
    .outlook-section {
      margin-bottom: 20px;
      padding: 18px 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border-left: 4px solid transparent;
      transition: all 0.3s ease;
    }

    .outlook-section:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateX(5px);
    }

    .outlook-section:nth-child(1) {
      border-left-color: #60a5fa;
    }

    .outlook-section:nth-child(2) {
      border-left-color: #fbbf24;
    }

    .outlook-section:nth-child(3) {
      border-left-color: #a78bfa;
    }

    /* Enhanced insights content styling */
    .insights-content {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Add subtle glow effects to outlook sections */
    .outlook-section:nth-child(1):hover {
      box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
    }

    .outlook-section:nth-child(2):hover {
      box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    }

    .outlook-section:nth-child(3):hover {
      box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
    }

    /* Improve outlook text spacing */
    .outlook-text {
      margin-left: 0;
      margin-top: 8px;
    }

    /* AI Search Bar Section Styles */
    .ai-search-section {
      background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
      padding: 60px 0;
      position: relative;
    }

    .ai-search-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
      opacity: 0.6;
    }

    .ai-search-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .ai-search-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .ai-search-title {
      color: #ffffff;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .ai-search-subtitle {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      margin: 0;
    }

    .ai-search-input-container {
      display: flex;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 15px;
      padding: 5px;
      transition: all 0.3s ease;
      margin-bottom: 30px;
    }

    .ai-search-input-container:focus-within {
      border-color: rgba(212, 175, 55, 0.6);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }

    .ai-search-input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 20px 25px;
      color: #ffffff;
      font-size: 1.1rem;
      outline: none;
      border-radius: 10px;
    }

    .ai-search-input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .ai-search-button {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      border: none;
      border-radius: 10px;
      padding: 15px 20px;
      color: #1a1a2e;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 60px;
    }

    .ai-search-button:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    .ai-search-button:active {
      transform: scale(0.95);
    }

    .ai-summary-output {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      padding: 25px;
      animation: slideInUp 0.5s ease-out;
    }

    .ai-response-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .ai-avatar {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }

    .ai-avatar-text {
      color: #D4AF37;
      font-weight: 700;
      font-size: 1.1rem;
      text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    .ai-response-content {
      color: #ffffff;
    }

    .ai-summary-text {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Article Cards Equal Height */
    .swiper-slide {
      height: auto;
      display: flex;
    }

    .swiper-slide .post-entry.lg {
      height: 100%;
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .swiper-slide .post-entry.lg .content-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .swiper-slide .post-entry.lg .content-wrapper p {
      flex: 1;
      margin-bottom: 0;
    }

    .swiper-slide .post-entry.lg .text-center {
      margin-top: auto;
      padding-top: 20px;
    }

    /* Ensure Swiper wrapper has equal height */
    .articles-slider .swiper-wrapper {
      align-items: stretch;
    }

    /* Force equal heights for all slides */
    .articles-slider .swiper-slide {
      height: auto;
    }

    .articles-slider .swiper-slide .post-entry.lg {
      min-height: 500px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .ai-section {
        padding: 60px 0;
      }

      .ai-heading {
        font-size: 2rem;
      }

      .ai-badge {
        font-size: 0.7rem;
        margin-left: 10px;
      }

      .ai-card {
        padding: 20px;
        margin-bottom: 20px;
      }

      .outlook-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .outlook-label {
        min-width: auto;
        margin-bottom: 5px;
      }

      .outlook-section {
        padding: 15px 18px;
        margin-bottom: 15px;
      }

      .outlook-section-title {
        font-size: 1rem;
        margin-bottom: 10px;
      }

      .outlook-text {
        margin-top: 6px;
        font-size: 0.9rem;
      }

      .ai-search-title {
        font-size: 1.6rem;
      }

      .ai-search-subtitle {
        font-size: 1rem;
      }

      .ai-search-input {
        padding: 15px 20px;
        font-size: 1rem;
      }

      .ai-search-button {
        padding: 12px 15px;
        min-width: 50px;
      }

      /* Mobile article card adjustments */
      .articles-slider .swiper-slide .post-entry.lg {
        min-height: 450px;
      }
    }

    @keyframes slideInFluid {
      0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
      }

      60% {
        opacity: 0.8;
        transform: translateX(5px) scale(1.05);
      }

      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    /* Subtle hover effect */
    .title-word:hover {
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
      transform: scale(1.02);
    }

    /* Premium Card Styles */
    .feature-card.premium {
      background: rgba(255, 255, 255, 0.1) !important;
      backdrop-filter: blur(15px) !important;
      -webkit-backdrop-filter: blur(15px) !important;
      border: 1px solid rgba(255, 255, 255, 0.25) !important;
      color: white !important;
    }

    .feature-card.premium .icon-wrapper {
      background: rgba(255, 255, 255, 0.2) !important;
      backdrop-filter: blur(5px) !important;
      -webkit-backdrop-filter: blur(5px) !important;
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .feature-card.premium .icon-wrapper i {
      color: #ffffff !important;
    }

    .feature-card.premium h3 {
      color: #ffffff !important;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    }

    .feature-card.premium .description {
      color: rgba(255, 255, 255, 0.9) !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }

    .feature-card.premium .btn {
      background: rgba(255, 255, 255, 0.25) !important;
      backdrop-filter: blur(5px) !important;
      -webkit-backdrop-filter: blur(5px) !important;
      border: 1px solid rgba(255, 255, 255, 0.4) !important;
      color: white !important;
    }

    .feature-card.premium .btn:hover {
      background: rgba(255, 255, 255, 0.35) !important;
      border-color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .title-word {
        animation-duration: 0.8s;
      }

      .title-word:nth-child(1) {
        animation-delay: 0.3s;
      }

      /* Market */
      .title-word:nth-child(2) {
        animation-delay: 0.5s;
      }

      /* & */
      .title-word:nth-child(3) {
        animation-delay: 0.7s;
      }

      /* Portfolio */
      .title-word:nth-child(4) {
        animation-delay: 0.9s;
      }

      /* Analysis */
      .title-word:nth-child(5) {
        animation-delay: 1.1s;
      }

      /* With AI */
      .title-word.ai-highlight {
        font-size: 0.6em;
      }
    }

    /* Portfolio Optimization Section Styles */
    .portfolio-optimization-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 0;
      position: relative;
    }

    .portfolio-optimization-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"viewBox="0 0 100 100"><defs><pattern id="portfolio-grid"width="20"height="20"patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20"fill="none"stroke="rgba(212,175,55,0.1)"stroke-width="0.5"/></pattern></defs><rect width="100"height="100"fill="url(%23portfolio-grid)"/></svg>');
      opacity: 0.3;
    }

    .portfolio-content {
      position: relative;
      z-index: 2;
    }

    .portfolio-title {
      color: #1a1a2e;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .portfolio-description {
      color: #6c757d;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .portfolio-features {
      margin-bottom: 40px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-item i {
      color: #D4AF37;
      font-size: 1.5rem;
      margin-right: 15px;
      margin-top: 5px;
    }

    .feature-item h4 {
      color: #1a1a2e;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .feature-item p {
      color: #6c757d;
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.5;
    }

    .portfolio-cta {
      text-align: center;
    }

    .btn-portfolio {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      border: none;
      border-radius: 12px;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a2e;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-portfolio:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
      color: #1a1a2e;
    }

    .cta-note {
      color: #6c757d;
      font-size: 0.9rem;
      margin-top: 15px;
      margin-bottom: 0;
    }

    .portfolio-visual {
      position: relative;
      z-index: 2;
    }

    .portfolio-score-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .score-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .score-header h3 {
      color: #1a1a2e;
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0;
    }

    .score-display {
      text-align: center;
      margin-bottom: 30px;
    }

    .score-number {
      font-size: 4rem;
      font-weight: 800;
      color: #22c55e;
      margin-bottom: 10px;
      text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }

    .score-label {
      color: #1a1a2e;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .score-change {
      background: rgba(34, 197, 94, 0.1);
      color: #22c55e;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      display: inline-block;
    }

    .score-breakdown {
      margin-top: 20px;
    }

    .breakdown-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .breakdown-label {
      color: #6c757d;
      font-size: 0.9rem;
      font-weight: 500;
      min-width: 120px;
    }

    .breakdown-bar {
      flex: 1;
      height: 8px;
      background: rgba(212, 175, 55, 0.1);
      border-radius: 4px;
      margin: 0 15px;
      overflow: hidden;
    }

    .breakdown-fill {
      height: 100%;
      background: linear-gradient(90deg, #D4AF37 0%, #A67C00 100%);
      border-radius: 4px;
      transition: width 0.8s ease;
    }

    .breakdown-value {
      color: #D4AF37;
      font-weight: 600;
      font-size: 0.9rem;
      min-width: 40px;
      text-align: right;
    }

    .consultation-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .consultation-card h4 {
      color: #1a1a2e;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .consultation-card p {
      color: #6c757d;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .consultation-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 25px;
    }

    .consultation-card li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #6c757d;
      font-size: 0.9rem;
    }

    .consultation-card li i {
      color: #22c55e;
      margin-right: 10px;
      font-size: 1rem;
    }

    .btn-consultation {
      border: 2px solid #D4AF37;
      color: #D4AF37;
      background: transparent;
      border-radius: 12px;
      padding: 12px 25px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      width: 100%;
      justify-content: center;
    }

    .btn-consultation:hover {
      background: #D4AF37;
      color: #1a1a2e;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    /* Responsive Design for Portfolio Section */
    @media (max-width: 768px) {
      .portfolio-optimization-section {
        padding: 60px 0;
      }

      .portfolio-title {
        font-size: 2rem;
      }

      .portfolio-description {
        font-size: 1rem;
      }

      .feature-item {
        padding: 15px;
        margin-bottom: 20px;
      }

      .feature-item i {
        font-size: 1.3rem;
        margin-right: 12px;
      }

      .feature-item h4 {
        font-size: 1.1rem;
      }

      .portfolio-score-card {
        padding: 25px;
        margin-bottom: 25px;
      }

      .score-number {
        font-size: 3rem;
      }

      .score-header h3 {
        font-size: 1.2rem;
      }

      .breakdown-label {
        min-width: 100px;
        font-size: 0.85rem;
      }

      .breakdown-bar {
        margin: 0 10px;
      }

      .consultation-card {
        padding: 20px;
      }

      .consultation-card h4 {
        font-size: 1.2rem;
      }
    }

    /* Consultation Modal Styles */
    .consultation-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10000;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .consultation-modal.active {
      display: flex !important;
      opacity: 1 !important;
      visibility: visible !important;
    }

    .modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
    }

    .modal-content {
      position: relative;
      background: #ffffff;
      border-radius: 20px;
      max-width: 1000px;
      width: 90%;
      max-height: 90vh;
      margin: auto;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transform: scale(0.8) translateY(50px);
      transition: transform 0.3s ease;
    }

    .consultation-modal.active .modal-content {
      transform: scale(1) translateY(0);
    }

    .modal-header {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      color: #1a1a2e;
      padding: 30px;
      border-radius: 20px 20px 0 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .modal-header-content {
      flex: 1;
      text-align: center;
      margin-right: 40px;
    }

    .modal-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1a1a2e;
    }

    .modal-subtitle {
      font-size: 1.1rem;
      margin: 0;
      opacity: 0.8;
      color: #1a1a2e;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(26, 26, 46, 0.2);
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a1a2e;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(26, 26, 46, 0.3);
      transform: scale(1.1);
    }

    .modal-body {
      padding: 40px;
    }

    .consultation-benefits {
      padding-right: 30px;
    }

    .benefits-header h3 {
      color: #1a1a2e;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .benefits-header p {
      color: #6c757d;
      font-size: 1rem;
      margin-bottom: 25px;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      padding: 15px;
      background: rgba(212, 175, 55, 0.05);
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .benefit-item:hover {
      background: rgba(212, 175, 55, 0.1);
      transform: translateX(5px);
    }

    .benefit-item i {
      color: #D4AF37;
      font-size: 1.3rem;
      margin-right: 15px;
      margin-top: 5px;
    }

    .benefit-item h4 {
      color: #1a1a2e;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .benefit-item p {
      color: #6c757d;
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.4;
    }

    .consultation-guarantee {
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.2);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      margin-top: 25px;
    }

    .consultation-guarantee i {
      color: #22c55e;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .consultation-guarantee p {
      color: #22c55e;
      font-weight: 600;
      margin: 0;
      font-size: 1rem;
    }

    .consultation-form-wrapper {
      padding-left: 20px;
    }

    .form-label {
      color: #1a1a2e;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    .form-control {
      border: 2px solid #e9ecef;
      border-radius: 8px;
      padding: 12px 15px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border-color: #D4AF37;
      box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    }

    .btn-book {
      background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
      border: none;
      border-radius: 12px;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a2e;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
      color: #1a1a2e;
    }

    .form-messages {
      text-align: center;
    }

    .loading {
      color: #D4AF37;
      font-weight: 600;
    }

    .error-message {
      color: #ef4444;
      font-weight: 600;
    }

    .sent-message {
      color: #22c55e;
      font-weight: 600;
    }

    /* Responsive Modal Design */
    @media (max-width: 768px) {
      .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 20px auto;
      }

      .modal-header {
        padding: 20px;
      }

      .modal-title {
        font-size: 1.6rem;
      }

      .modal-subtitle {
        font-size: 1rem;
      }

      .modal-body {
        padding: 20px;
      }

      .consultation-benefits {
        padding-right: 0;
        margin-bottom: 30px;
      }

      .consultation-form-wrapper {
        padding-left: 0;
      }

      .benefit-item {
        padding: 12px;
        margin-bottom: 15px;
      }

      .benefit-item i {
        font-size: 1.2rem;
        margin-right: 12px;
      }

      .benefit-item h4 {
        font-size: 1rem;
      }

      .benefit-item p {
        font-size: 0.85rem;
      }

      .consultation-guarantee {
        padding: 15px;
        margin-top: 20px;
      }

      .consultation-guarantee i {
        font-size: 1.3rem;
      }

      .consultation-guarantee p {
        font-size: 0.9rem;
      }
    }

    /* Testimonials Section Styles */
    .testimonials-section {
      background: linear-gradient(135deg, #1a2a7a 0%, #0f1419 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern"width="30"height="30"patternUnits="userSpaceOnUse"><circle cx="15"cy="15"r="1"fill="rgba(212,175,55,0.1)"/><circle cx="45"cy="45"r="1"fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100"height="100"fill="url(%23testimonial-pattern)"/></svg>');
      opacity: 0.3;
    }

    .testimonials-title {
      color: #ffffff !important;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
      filter: none !important;
    }

    .testimonials-subtitle {
      color: #ffffff !important;
      font-size: 1.1rem;
      margin: 0;
      position: relative;
      z-index: 2;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 20px;
      padding: 30px;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      border-color: rgba(212, 175, 55, 0.4);
      box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
      background: rgba(255, 255, 255, 0.08);
    }

    .testimonial-content {
      margin-bottom: 25px;
    }

    .quote-icon {
      color: #D4AF37;
      font-size: 2rem;
      margin-bottom: 20px;
      opacity: 0.7;
    }

    .testimonial-text {
      color: #ffffff;
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
    }

    .author-info {
      text-align: left;
    }

    .author-name {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .author-title {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .rating {
      display: flex;
      gap: 2px;
    }

    .rating i {
      color: #D4AF37;
      font-size: 0.9rem;
    }

    .trust-indicators {
      position: relative;
      z-index: 2;
    }

    .trust-item {
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 15px;
      transition: all 0.3s ease;
    }

    .trust-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.4);
    }

    .trust-number {
      color: #D4AF37;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 10px;
      text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .trust-label {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      font-weight: 500;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Responsive Testimonials Design */
    @media (max-width: 768px) {
      .testimonials-section {
        padding: 60px 0;
      }

      .testimonials-title {
        font-size: 2rem;
      }

      .testimonials-subtitle {
        font-size: 1rem;
      }

      .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
      }

      .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
      }

      .testimonial-text {
        font-size: 0.95rem;
      }

      .testimonial-author {
        justify-content: flex-start;
        align-items: flex-end;
      }

      .author-name {
        font-size: 1rem;
      }

      .author-title {
        font-size: 0.85rem;
      }

      .trust-item {
        padding: 15px;
        margin-bottom: 15px;
      }

      .trust-number {
        font-size: 2rem;
      }

      .trust-label {
        font-size: 0.9rem;
      }
    }

    /* Enhanced Home Page Layout */
    .hero-section {
      padding: 4rem 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/img/picture.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
    }

    .hero-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      color: white;
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      color: white;
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content .lead {
      color: white;
      font-size: 1.25rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-cards {
      margin-top: 3rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 3;
    }

    .hero-cards .row {
      justify-content: center;
      align-items: stretch;
    }

    .hero-cards .col-md-4 {
      display: flex;
      margin-bottom: 2rem;
    }

    .hero-cards .feature-card {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .animated-title {
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    .lead {
      font-size: 1.2rem;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    /* Remove any potential carousel navigation */
    .carousel-nav,
    .prev-btn,
    .next-btn,
    .carousel-nav button,
    .carousel-nav .prev-btn,
    .carousel-nav .next-btn,s
    button[aria-label*="Previous"],
    button[aria-label*="Next"],
    .bi-chevron-left,
    .bi-chevron-right,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    .carousel-control-prev,
    .carousel-control-next {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    /* Additional cleanup for any remaining navigation elements */
    .hero-section *[class*="carousel"],
    .hero-section *[class*="nav"],
    .hero-section *[class*="arrow"],
    .hero-section *[class*="chevron"] {
      display: none !important;
    }
    .hero-cards .feature-card,
    .hero-cards .feature-card.consultation,
    .hero-cards .feature-card.premium {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      pointer-events: auto;
    }

    .hero-cards .feature-card:hover,
    .hero-cards .feature-card.consultation:hover,
    .hero-cards .feature-card.premium:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.35);
    }

    .hero-cards .feature-card.consultation {
      background: rgba(255, 255, 255, 0.1);
      color: white;
    }

    .hero-cards .feature-card.consultation .icon-wrapper {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
    }

    .hero-cards .feature-card.consultation h3 {
      color: white;
      text-align: center;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-cards .feature-card.consultation .description {
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .hero-cards .feature-card.consultation .btn {
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: white;
      font-weight: 600;
    }

    .hero-cards .feature-card.consultation .btn:hover {
      background: rgba(255, 255, 255, 0.35);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
    }

    .hero-cards .feature-card .icon-wrapper,
    .hero-cards .feature-card.consultation .icon-wrapper,
    .hero-cards .feature-card.premium .icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      transition: all 0.3s ease;
    }

    .hero-cards .feature-card:hover .icon-wrapper,
    .hero-cards .feature-card.consultation:hover .icon-wrapper,
    .hero-cards .feature-card.premium:hover .icon-wrapper {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .hero-cards .feature-card .icon-wrapper i,
    .hero-cards .feature-card.consultation .icon-wrapper i,
    .hero-cards .feature-card.premium .icon-wrapper i {
      font-size: 2rem;
      color: #ffffff;
    }

    .hero-cards .feature-card h3,
    .hero-cards .feature-card.consultation h3,
    .hero-cards .feature-card.premium h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #ffffff;
      text-align: center;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-cards .feature-card .description,
    .hero-cards .feature-card.consultation .description,
    .hero-cards .feature-card.premium .description {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      flex-grow: 1;
      text-align: center;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .hero-cards .feature-card .btn,
    .hero-cards .feature-card.consultation .btn,
    .hero-cards .feature-card.premium .btn {
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: white;
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 100 !important;
      pointer-events: auto !important;
      cursor: pointer !important;
      text-decoration: none;
      display: inline-block;
    }

    .hero-cards .feature-card .btn:hover,
    .hero-cards .feature-card.consultation .btn:hover,
    .hero-cards .feature-card.premium .btn:hover {
      background: rgba(255, 255, 255, 0.35);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      text-decoration: none;
    }

    .hero-cards .feature-card .btn:active,
    .hero-cards .feature-card.consultation .btn:active,
    .hero-cards .feature-card.premium .btn:active {
      transform: translateY(0);
    }

    /* Final override for premium card - Modern semi-transparent design */
    body .hero-cards .col-md-4 .feature-card.premium {
      background: rgba(255, 255, 255, 0.1) !important;
      backdrop-filter: blur(15px) !important;
      -webkit-backdrop-filter: blur(15px) !important;
      border: 1px solid rgba(255, 255, 255, 0.25) !important;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    }
    body .hero-cards .col-md-4 .feature-card.premium .icon-wrapper {
      background: rgba(255, 255, 255, 0.2) !important;
      backdrop-filter: blur(5px) !important;
      -webkit-backdrop-filter: blur(5px) !important;
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    body .hero-cards .col-md-4 .feature-card.premium .icon-wrapper i {
      color: #ffffff !important;
      opacity: 1 !important;
    }
    body .hero-cards .col-md-4 .feature-card.premium h3 {
      color: #ffffff !important;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    }
    body .hero-cards .col-md-4 .feature-card.premium .description {
      color: rgba(255, 255, 255, 0.9) !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Fix color contrast for driver details and outlook titles */
    .driver-details,
    .driver-impact,
    .driver-timeframe,
    .driver-catalyst {
      color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .outlook-section-title {
      color: rgba(255, 255, 255, 0.95) !important;
    }
