@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ========================================
   0. Global
======================================== */
body {
  overflow-x: hidden;
}

/* ========================================
   1. TOP ANNOUNCEMENT BANNER
======================================== */
.announcement-banner {
  background-color: #2A9CD2;
  padding: 1.5rem 0;
  color: white;
}

.announcement-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-right: 1rem;
}

.announcement-link {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.announcement-link:hover {
  opacity: 0.8;
  color: white;
}

/* Responsive - Top Announcement Banner */
@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .announcement-banner {
    padding: 0.4rem 0;
  }
  
  .announcement-text {
    font-size: 0.75rem;
  }
  
  .announcement-link {
    font-size: 0.75rem;
  }
}

/* ========================================
   2. NAVBAR
======================================== */
.phoenix-navbar {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.phoenix-navbar .navbar-collapse {
  justify-content: flex-end;
}

.phoenix-navbar .navbar-nav {
  margin-left: auto !important;
}

.navbar-logo {
  height: 40px;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.phoenix-navbar .nav-link {
  color: #000 !important;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 0 .5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
}

.phoenix-navbar .nav-link:hover {
  color: #2A9CD2 !important;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-link:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-btn,
.navbar-btn-contact {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  padding: 9px 19px;
  border: 1px solid #4BA0D6;
  background-color: #4BA0D6;
  color: #f5f5f5;
}

.navbar-btn {
  margin: 0 1.8rem 0 1rem;
}

.navbar-btn:hover,
.navbar-btn-contact:hover {
  background-color: #2A9CD2;
  border-color: #2A9CD2;
}

/* Responsive - Navbar */
@media (max-width: 991.98px) {
  /* Mobile navbar adjustments */
  .phoenix-navbar {
    padding: 0.75rem 0;
  }
  
  .navbar-logo {
    height: 35px;
  }
  
  /* Mobile menu positioning and styling */
  .phoenix-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .phoenix-navbar .navbar-nav {
    margin-left: 0 !important;
    width: 100%;
  }
  
  .phoenix-navbar .nav-item {
    margin-bottom: 0.5rem;
    width: 100%;
  }
  
  .phoenix-navbar .nav-link {
    padding: 0.75rem 1rem;
    margin: 0;
    font-size: 14px;
    justify-content: space-between;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .phoenix-navbar .nav-link:hover {
    background-color: #f8f9fa;
    color: #2A9CD2 !important;
  }
  
  /* Mobile button styling */
  .navbar-btn,
  .navbar-btn-contact {
    width: 100%;
    margin: 0.25rem 0;
    padding: 0.75rem 1rem;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }
  
  .navbar-btn {
    margin-bottom: 0.5rem;
  }
  
  /* Hamburger menu styling */
  .navbar-toggler {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
  }
  
  .navbar-toggler:hover {
    background-color: #f8f9fa;
  }
  
  .navbar-toggler.active {
    background-color: #2A9CD2;
    border-color: #2A9CD2;
  }
  
  .navbar-toggler.active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

@media (max-width: 576px) {
  .phoenix-navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-logo {
    height: 30px;
  }
  
  .phoenix-navbar .nav-link {
    font-size: 13px;
    padding: 0.6rem 0.75rem;
  }
  
  .navbar-btn,
  .navbar-btn-contact {
    font-size: 13px;
    padding: 0.6rem 1rem;
  }
}

/* ========================================
   3. PHOENIX PLATFORM HEADER
======================================== */
.phoenix-header {
  background-color: #2A9CD2;
  padding: 1rem 0;
  color: white;
}

.phoenix-header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.phoenix-text-content {
  flex: none;
}

.phoenix-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.phoenix-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}

.target-icon {
  margin-left: 2rem;
  flex-shrink: 0;
}

.target-icon-mobile {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* Responsive - Phoenix Platform Header */
@media (max-width: 991px) {
}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .phoenix-title {
    font-size: 18px;
  }
}

@media (max-width: 486px) {
  .phoenix-header .d-md-none .col-2 {
    padding: 0;
  }
}

/* ========================================
   4. HERO SECTION
======================================== */
.hero-section {
  background-image: url('https://nxmcdn.com/images/naxum_new/wp/bg_header_phoenix.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 12rem 0;
  color: white;
  position: relative;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 78px;
  font-weight: 700;
  color: white;
  line-height: 80px;
  margin-bottom: 2rem;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: white;
  margin-bottom: 2.5rem;
}

.btn-phoenix-primary.hero-btn {
  background-color: white !important;
  color: #2A9CD2;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 5px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.btn-phoenix-primary.hero-btn:hover {
  background-color: #2A9CD2 !important;
  color: white;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive - Hero Section */
@media (max-width: 991px) {
  
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 3rem 0;
  }

  .hero-title {
    font-size: 48px;
    line-height: 55px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 50px 0;
  }
}

/* ========================================
   5. CHALLENGE SECTION
======================================== */
.challenge-section {
  padding: 0;
}

.challenge-section .row {
  height: 100%;
}

.challenge-image,
.challenge-content {
  min-height: 700px;
  height: 100%;
}

.challenge-image {
  background-image: url('https://nxmcdn.com/images/naxum_new/wp/bg_most_rp.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.challenge-content {
  padding: 0 31% 0 3rem;
  background-color: #2A9CD2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.challenge-badge {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 1.5rem;
}

.challenge-title {
  font-family: 'Poppins', sans-serif;
  font-size: 55px;
  font-weight: 600;
  color: white;
  line-height: 110%;
  margin-bottom: 2rem;
}

.challenge-list {
  list-style: none;
  padding: 0;
  margin-left: 1rem;
}

.challenge-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 110%;
}

.challenge-list li::before {
  content: "•";
  color: white;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 110%;
}

.challenge-boxes {
  position: absolute;
  top: 0;
  right: 0;
}

/* Responsive - Challenge Section */
@media (max-width: 992px) {
  .challenge-content {
    background-color: transparent;
    padding: initial;
  }

  .challenge-content-mobile {
    background-color: #2A9CD2;
  }

  .challenge-list {
    margin-left: 0;
  }

}

@media (max-width: 576px) {
  .challenge-title {
    font-size: 35px;
  }

  .challenge-content {
    padding: 50px 0;
    min-height: initial;
  }
}

/* ========================================
   6. QUOTE SECTION
======================================== */
.quote-section {
  padding: 75px 0;
  position: relative;
}

.quote-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: italic;
  color: #2A9CD2;
  text-align: center;
  margin: 0;
  line-height: 110%;
  font-weight: 700;
  border: none;
  padding: 0;
}

/* Quote Section Decorative Icons */
.quote-decorative-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.quote-boxes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* Responsive - Quote Section */
@media (max-width: 1200px) {
  .quote-text br {
    display: none;
  }
}

@media (max-width: 992px) {
  
}

@media (max-width: 576px) {
  .quote-section {
    padding-left: 50px;
    padding-right: 50px;
  }

  .quote-text {
    font-size: 25px;
  }

  .quote-boxes {
    display: none;
  }
}

/* ========================================
   7. BREAKTHROUGH SECTION
======================================== */
.breakthrough-section {
  padding: 100px 0;
  background-color: #2A9CD2;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative Icons */
.breakthrough-decorative-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.breakthrough-boxes-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.breakthrough-semicircle-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.breakthrough-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.breakthrough-section .container {
  position: relative;
  z-index: 2;
}

.breakthrough-badge {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 1.5rem;
}

.breakthrough-badge .badge-icon {
  margin-right: 10px;
}

.breakthrough-title {
  font-family: 'Poppins', sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 110%;
  margin: 0;
  color: white;
}

.breakthrough-description p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 110%;
  margin: 0;
  font-weight: 500;
}

/* Features Grid (part of Breakthrough Section) */
.features-grid {
  margin-top: 2rem;
}

.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 10px;
}

.feature-card {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 110%;
  color: white;
}

.feature-description {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin: 0;
  line-height: 110%;
}

/* Responsive - Breakthrough Section */
@media (max-width: 1200px) and (min-width: 992px) {
  /* Between 992px and 1200px: 3 icons on first row, 2 on second row */
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .col-lg-2-4:nth-child(1),
  .col-lg-2-4:nth-child(2),
  .col-lg-2-4:nth-child(3) {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-lg-2-4:nth-child(4),
  .col-lg-2-4:nth-child(5) {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  /* Medium devices: 2 columns layout */
  .breakthrough-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .breakthrough-title {
    font-size: 35px;
  }

  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .col-lg-2-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 2rem;
  }
  
  .feature-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .feature-icon {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .breakthrough-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .breakthrough-title {
    font-size: 35px;
  }

  .feature-icon {
    margin-top: 50px;
  }

  /* Below 768px: vertical layout, one icon per row */
  .col-lg-2-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  
  .feature-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .breakthrough-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .breakthrough-section .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ========================================
   8. INVITE ONLY SECTION
======================================== */
.invite-only-section {
  padding: 7rem 0;
  background-color: white;
}

.invite-only-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 1.5rem;
}

.invite-only-title {
  font-family: 'Poppins', sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 35px;
}

.invite-only-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  margin: 0;
}

/* Images Side by Side with Different Sizes */
.invite-only-images {
  position: relative;
}

.images-side-by-side {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.invite-image-1,
.invite-image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Client Benefits Area within Invite Section */
.client-benefits-area {
  margin-top: 4rem;
  margin-left: 2rem;
}

.benefits-title {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #2A9CD2;
  line-height: 110%;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  flex: 1;
}

/* Responsive - Invite Only Section */
@media (max-width: 992px) {
  .invite-only-images {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
 
}

@media (max-width: 576px) {
  .invite-only-section {
    padding: 50px 10px;
  }

  .invite-only-section .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .invite-only-title {
    font-size: 35px;
  }
}

/* ========================================
   9. APPLY CTA SECTION
======================================== */
.apply-cta-section {
  padding: 6rem 0;
  background-image: url('https://nxmcdn.com/images/naxum_new/wp/bg_apply_invite.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.btn.btn-apply-cta {
  background-color: white !important;
  color: #2A9CD2;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 17px 29px;
  border-radius: 5px !important;
  font-size: 19px;
  margin-bottom: 25px;
  line-height: 22px;
  transition: all 0.3s ease;
}

.btn.btn-apply-cta:hover {
  background-color: #2A9CD2 !important;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-disclaimer {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 110%;
}

/* Responsive - Apply CTA Section */
@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .apply-cta-section {
    padding: 50px 10px;
  }
}

/* ========================================
   11. HOW PHOENIX WORKS SECTION
======================================== */
.how-it-works-section {
  padding: 9rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative Icons */
.how-it-works-decorative-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.how-it-works-boxes-icon {
  position: absolute;
  top: 40px;
  right: 26.5%;
}

.how-it-works-circle-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.how-it-works-title {
  font-family: 'Poppins', sans-serif;
  font-size: 55px;
  font-weight: 500;
  color: #2E2E2E;
  margin-bottom: 2rem;
}

.step-item {
  padding: 2rem 0;
  border-top: 1px solid #dadada;
}

.step-item .row {
  align-items: center;
}

.step-item:last-child {
  border-bottom: 1px solid #dadada;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #2A9CD2;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 140%;
}

.step-description {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  color: #2E2E2E;
  line-height: 140%;
  margin: 0;
}

/* Responsive - How Phoenix Works Section */
@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .how-it-works-section .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .how-it-works-decorative-icons {
    display: none;
  }

  .how-it-works-section {
    padding: 50px 10px;
  }

  .how-it-works-title {
    font-size: 35px;
    margin: 30px 0;
  }

  .step-title {
    margin-bottom: 25px;
  }

  .step-item {
    padding: 25px 0;
  }
}

/* ========================================
   12. REVENUE SHARE SECTION
======================================== */
.revenue-share-section {
  padding: 8rem 0;
  background-image: url('https://nxmcdn.com/images/naxum_new/wp/bg_revenue_share.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.revenue-share-content {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  max-width: 460px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.revenue-share-header {
  background: linear-gradient(90deg, #2A9CD2 0%, #71B7D8 100%);
  padding: 15px 10px;
  text-align: center;
}

.revenue-share-title {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 140%;
}

.revenue-share-body {
  background-color: white;
}

.revenue-share-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.revenue-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  border-bottom: 1px solid #dadada;
}

.revenue-item:last-child {
  border-bottom: none;
}

.revenue-item.buyout-option {
  padding-top: 1rem;
}

.revenue-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revenue-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 200%;
}



/* Responsive - Revenue Share Section */
@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .revenue-share-section {
    padding: 100px 10px;
  }

  .revenue-share-section .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ========================================
   13. PHOENIX NOT FOR EVERYONE SECTION
======================================== */
.not-for-everyone-section {
  padding: 7rem 0;
  background-color: white;
}

.not-for-everyone-content {
  padding-right: 2rem;
}

.warning-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 1.5rem;
}

.warning-badge .badge-icon {
  margin-right: 10px;
}

.not-for-everyone-title {
  font-family: 'Poppins', sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 1.5rem;
}

.not-for-everyone-subtitle,
.criteria-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.not-for-everyone-subtitle {
  margin-bottom: 1.5rem;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.criteria-check {
  flex-shrink: 0;
}

.double-check-icon {
  width: 28px;
  height: 28px;
}

.criteria-text {
  flex: 1;
}

.not-for-everyone-image {
  text-align: center;
  padding-left: 2rem;
}

.not-for-everyone-image img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive - Phoenix Not For Everyone Section */
@media (max-width: 992px) {
 
}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .not-for-everyone-section {
    padding: 50px 10px;
  }

  .not-for-everyone-section .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .not-for-everyone-title {
    font-size: 35px;
  }

  .not-for-everyone-image {
    padding-left: 0;
    margin-top: 25px;
  }
}

/* ========================================
   14. FINAL APPLY SECTION
======================================== */
.final-apply-section {
  padding: 7rem 0;
  background-image: url('https://nxmcdn.com/images/naxum_new/wp/bg_apply_invite.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.final-apply-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 3.5rem;
  line-height: 50px;
}

.btn.btn-final-apply {
  background-color: white !important;
  color: #2A9CD2;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 17px 29px;
  border-radius: 5px !important;
  font-size: 19px;
  margin-bottom: 1.5rem;
  line-height: 22px;
  transition: all 0.3s ease;
}

.btn.btn-final-apply:hover {
  background-color: #2A9CD2 !important;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive - Final Apply Section */
@media (max-width: 992px) {
  
}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .final-apply-section {
    padding: 50px 10px;
  }

  .final-apply-title {
    font-size: 35px;
  }
}

/* ========================================
   15. APPLICATION NOTICE SECTION
======================================== */
.application-notice-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.application-notice-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #2A9CD2;
  margin-bottom: 1rem;
  line-height: 110%;
  padding: 0 2rem;
}

.application-notice-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #2A9CD2;
  margin: 0;
  line-height: 110%;
}

/* Responsive - Application Notice Section */
@media (max-width: 992px) {
  
}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .application-notice-section {
    padding: 50px 15px;
  }

  .application-notice-title {
    font-size: 25px;
  }
}

/* ========================================
   16. FOOTER
======================================== */
.phoenix-footer {
  background-color: #000;
  color: white;
  padding: 6rem;
}

.newsletter-section {
  margin-top: 2rem;
}

.newsletter-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-radius: 0 8px 0 0;
  background: #fff;
  overflow: hidden;
  max-width: 289px;
}

.newsletter-input {
  flex: 1;
  padding: 8px 25px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: -0.205px;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  background-color: #4BA0D6;
  border: none;
  color: white;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.newsletter-button:hover {
  background-color: #2A9CD2;
}

.footer-column.modules-column {
  padding-left: 4rem;
}

.footer-column-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #4BA0D6;
  margin-bottom: 25px;
  letter-spacing: -0.232px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 25px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: -0.205px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #2A9CD2;
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-item span {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: -0.205px;
  line-height: 1.4;
}

.footer-bottom {
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.copyright {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: -0.205px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  white-space: nowrap;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: -0.205px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #2A9CD2;
}

.social-media {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.7;
}

.social-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(64%) sepia(96%) saturate(2948%) hue-rotate(182deg) brightness(90%) contrast(84%);
}

/* Responsive - Footer */
@media (max-width: 992px) {
  
}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #2A9CD2;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(42, 156, 210, 0.3);
  z-index: 1000;
}

.back-to-top-btn:hover {
  background-color: #4BA0D6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 156, 210, 0.4);
}

.back-to-top-btn:active {
  transform: translateY(0);
}

.back-to-top-btn:focus {
  outline: none;
  box-shadow: 0 4px 12px rgba(42, 156, 210, 0.3);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .back-to-top-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}