  html {
      overflow-x: clip;
  }  
/* Full-width breakout */
  .pegasus-footer-wrapper-08fb9ef3 {
      font-family: inherit;
      color: #ffffff;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
  }


  .pegasus-footer-wrapper-08fb9ef3 * {
      box-sizing: border-box;
  }

  .pegasus-mission-section {
      background: linear-gradient(135deg, #163622 0%, #0b1a0f 100%);
      padding: 80px 40px 60px;
      text-align: center;
  }

  .pegasus-mission-badge {
      color: #E48632;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 20px;
  }

  .pegasus-mission-title {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 30px;
      color: #ffffff;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.2;
  }

  .pegasus-mission-desc {
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto;
      color: #e0e0e0;
      line-height: 1.6;
  }

  .pegasus-main-footer {
      background-color: #0b1a0f;
      padding: 0 40px 40px;
      position: relative;
      overflow: hidden;
  }

  .pegasus-dotted-divider {
      height: 6px;
      background-image: radial-gradient(#E48632 20%, transparent 20%);
      background-size: 16px 6px;
      background-position: left center;
      background-repeat: repeat-x;
      margin-bottom: 60px;
      opacity: 0.8;
  }

  .pegasus-footer-shape {
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 150px 150px 0;
      border-color: transparent #E48632 transparent transparent;
  }

  .pegasus-footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }

  .pegasus-footer-logo-area {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
  }

  .pegasus-footer-logo-area img {
      width: 60px;
      height: auto;
      object-fit: contain;
  }

  .pegasus-company-name {
      font-weight: 800;
      font-size: 20px;
      line-height: 1.2;
      color: #ffffff;
  }

  .pegasus-company-name span {
      display: block;
      color: #E48632;
      font-size: 12px;
      letter-spacing: 2px;
      font-weight: 600;
  }

  .pegasus-footer-desc {
      color: #e0e0e0;
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
  }

  .pegasus-footer-title {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 20px 0;
      color: #ffffff;
  }

  .pegasus-footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .pegasus-footer-nav li {
      margin-bottom: 12px;
  }

  .pegasus-footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 15px;
  }

  .pegasus-footer-nav a:hover {
      color: #E48632;
  }

  .pegasus-footer-contact a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e0e0e0;
      text-decoration: none;
      margin-bottom: 15px;
      transition: color 0.3s ease;
      font-size: 15px;
  }

  .pegasus-footer-contact a:hover {
      color: #E48632;
  }

  .pegasus-footer-contact a svg {
      width: 18px;
      height: 18px;
      fill: #E48632;
      flex-shrink: 0;
  }

  .pegasus-footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #a0a0a0;
      position: relative;
      z-index: 2;
  }

  .pegasus-floating-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #1a4224;
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 9999;
      transition: transform 0.3s ease, background-color 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pegasus-floating-btn:hover {
      transform: translateY(-3px);
      background-color: #215a30;
      color: #ffffff;
  }

  .pegasus-floating-btn svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
  }

  /* Tablet */
  @media (max-width: 1024px) {
      .pegasus-mission-section {
          padding: 60px 30px 50px;
      }

      .pegasus-mission-title {
          font-size: 34px;
      }

      .pegasus-main-footer {
          padding: 0 30px 40px;
      }

      .pegasus-footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 30px;
      }
  }

  /* Mobile */
  @media (max-width: 768px) {
      .pegasus-mission-section {
          padding: 50px 20px 40px;
      }

      .pegasus-mission-title {
          font-size: 28px;
      }

      .pegasus-mission-desc {
          font-size: 16px;
      }

      .pegasus-main-footer {
          padding: 0 20px 30px;
      }

      .pegasus-footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .pegasus-footer-shape {
          border-width: 0 100px 100px 0;
      }

      .pegasus-footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 10px;
      }

      .pegasus-floating-btn {
          bottom: 20px;
          right: 20px;
      }
  }

  /* Override Elementor wrapper padding */
  /* Elementor wrapper reset */
  .elementor-widget-pegasus_footer_08fb9ef3,
  .elementor-widget-pegasus_footer_08fb9ef3 > .elementor-widget-container {
      padding: 0 !important;
      margin: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      overflow: visible !important;
  }
