@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    --deep-trust-blue: #1d4ed8;
    --futuric-azure: #3b82f6;
    --vivid-neo-mint: #34d399;
    --cloud-base: #ffffff;
    --slate-core: #000000;
    --primary-color: var(--deep-trust-blue);
    --secondary-color: var(--futuric-azure);
    --accent-color: var(--vivid-neo-mint);
    --light-color: var(--cloud-base);
    --dark-color: var(--slate-core);
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* === Navigation === */
 /* Navbar */
.navbar {
    background: var(--light-color) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    padding-left: 0;
}

.navbar-brand {
    color: var(--dark-color) !important;
    text-shadow: none;
    letter-spacing: 2px;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-left: -15px;
}

.navbar-brand img {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand:hover {
    box-shadow: 
        inset 3px 3px 8px rgba(20, 50, 140, 0.5),
        inset -3px -3px 8px rgba(40, 90, 230, 0.5);
}

.nav-link {
    color: var(--dark-color) !important;
    position: relative;
    margin: 0 10px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 15px !important;
    border-radius: 10px;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 15px;
    background-color: var(--vivid-neo-mint);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 30px);
}
/* Remove border and use black icon lines */
.navbar-toggler {
  border: none;
  padding: 4px; /* Optional: reduces excess space */
  outline: 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='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* === Hero Section === */
.hero {
    background: var(--light-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 76px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

.hero-logo {
    display: block;
    margin: 0 auto;
    max-width: 600px;
    width: 80%;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.25));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--dark-color);
    font-weight: 300;
}

/* === Section Common Styles === */
.section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-title {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-trust-blue), var(--futuric-azure));
    border-radius: 2px;
}
.opportunity-popup-exact {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 1200;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #ededed;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  width: 255px;
  min-width: 205px;
  padding: 20px 16px 16px 16px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  text-align: center;
}

.popup-close-exact {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 1.7rem;
  color: #12b088;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  z-index: 10;
  transition: color 0.19s;
}
.popup-close-exact:hover { color: #ff0032; }

.popup-badge-exact {
  margin-top: 0;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  user-select: none;
}

.popup-badge-blue {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  background: #2176ff;
  color: #fff;
  padding: 2.5px 11px 2.5px 11px;
  border-radius: 7px 7px 0 0;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-right: 1px;
}
.popup-badge-green {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  background: #b0f3b0;
  color: #166534;
  padding: 2.5px 10px 2.5px 10px;
  border-radius: 0 0 7px 7px;
  letter-spacing: 0.03em;
  margin-top: -6px;
  display: inline-block;
}

.popup-weare {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: #222;
  margin-bottom: 0.19rem;
  font-weight: 400;
}

.popup-lookingfor {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #111;
  text-transform: uppercase;
  line-height: 1.01;
  letter-spacing: 0.02em;
  margin-bottom: 0.52rem;
}
.popup-lookingfor span {
  display: block;
  font-size: 1.31em;
  margin-bottom: -6px;
}
.popup-lookingfor span:last-child {
  color: #111;
  font-size: 1.31em;
  margin-bottom: 0;
}

.popup-lookingfor span:last-child {
  letter-spacing: 0.01em;
  font-size: 1.36em;
  color: #111;
}

.popup-contact-exact {
  margin-top: 12px;
}
.popup-contact-link-exact {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-bottom: 1px dotted #bbb;
  transition: color 0.17s;
}
.popup-contact-link-exact:hover {
  color: #2176ff;
  border-bottom: 1px solid #2176ff;
}

@media (max-width: 600px) {
  .opportunity-popup-exact {
    right: 6px; left: 6px; top: 8vw; width: unset; min-width: unset;
    max-width: 98vw;
  }
}

/* === App Cards === */
.app-card {
    background: white;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--dark-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.app-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--deep-trust-blue), var(--futuric-azure), var(--vivid-neo-mint));
    z-index: -2;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.15);
}

.app-card:hover::before {
    opacity: 0.7;
}

.app-card .card-body {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.app-card i {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--deep-trust-blue), var(--futuric-azure));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.app-card .card-text {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* === Testimonials Section === */
.testimonials-section {
    background: var(--light-color);
    position: relative;
    padding: 6rem 2rem;
}

.testimonials-section .section-title {
    margin-bottom: 4rem;
}

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    flex: 0 0 auto;
    width: calc(33.333% - 2rem);
    scroll-snap-align: start;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    color: var(--futuric-azure);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--futuric-azure);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--dark-color);
    opacity: 0.7;
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    margin-top: 0.5rem;
}

.rating i {
    font-size: 0.875rem;
}

/* Testimonials Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-item {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .testimonial-item {
        width: calc(100% - 2rem);
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-img {
        width: 40px;
        height: 40px;
    }

    .author-info h5 {
        font-size: 0.95rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonial-carousel {
        gap: 1rem;
    }

    .testimonial-item {
        width: calc(100% - 1rem);
    }

    .testimonial-content {
        padding: 1.25rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rating {
        justify-content: flex-start;
    }
}

/* === About Section === */
#about {
    background: #ffffff;
    position: relative;
    color: #000000;
    padding: 6rem 0;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(59, 130, 246, 0.1) 75%
    );
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}

#about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, var(--futuric-azure) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

#about .container {
    position: relative;
    z-index: 2;
}

#about .section-title {
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

#about .section-title::after {
    background: linear-gradient(90deg, var(--vivid-neo-mint), var(--futuric-azure));
}

#about p {
    color: #000000;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

#about .feature-box {
    background: var(--deep-trust-blue);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vivid-neo-mint);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        8px 8px 16px rgba(20, 50, 140, 0.5),
        -8px -8px 16px rgba(40, 90, 230, 0.5),
        inset 1px 1px 1px rgba(52, 211, 153, 0.2);
}

#about .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--vivid-neo-mint), transparent 50%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#about .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 20px rgba(20, 50, 140, 0.6),
        -12px -12px 20px rgba(40, 90, 230, 0.6),
        inset 1px 1px 1px rgba(52, 211, 153, 0.3);
}

#about .feature-box:hover::before {
    opacity: 1;
}

#about .feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--vivid-neo-mint), var(--futuric-azure));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(52, 211, 153, 0.3));
}

#about .feature-box h4 {
    color: var(--light-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

#about .feature-box p {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    #about {
        padding: 4rem 0;
    }

    #about .feature-box {
        margin-bottom: 2rem;
    }

    #about p {
        font-size: 1rem;
    }

    #about .feature-box h4 {
        font-size: 1.1rem;
    }

    #about .feature-box p {
        font-size: 0.9rem;
    }
}

/* === Affiliate Section === */
#affiliate {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: #000000;
}

#affiliate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(59, 130, 246, 0.1) 75%
    );
    background-size: 30px 30px;
    opacity: 0.15;
    pointer-events: none;
}

.affiliate-video {
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(29, 78, 216, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.affiliate-video:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(29, 78, 216, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

#affiliate h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: #000000;
    text-shadow: 0 2px 10px rgba(29, 78, 216, 0.3);
}

#affiliate h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    position: relative;
}

#affiliate .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #000000;
    opacity: 0.9;
}

#affiliate p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
}

.benefit-card {
    background: var(--deep-trust-blue);
    border-radius: 15px;
    padding: 1.5rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.benefit-card h4 {
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-card .col-10 {
    color: #ffffff;
}

.benefit-card .fw-bold {
    color: #ffffff !important;
}

.benefit-card .text-primary i {
    color: var(--vivid-neo-mint) !important;
}

.testimonial-snippet {
    background: rgba(30, 41, 59, 0.4);
    border-left: 4px solid var(--vivid-neo-mint);
    transition: all 0.3s ease;
}

.testimonial-snippet:hover {
    background: rgba(30, 41, 59, 0.6);
    transform: translateX(5px);
}

.quote-marks {
    color: var(--vivid-neo-mint) !important;
    line-height: 1;
}

.countdown-container {
    padding: 1rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 10px;
    border: 1px dashed rgba(59, 130, 246, 0.4);
}

.countdown-container .text-warning {
    color: var(--vivid-neo-mint) !important;
}

.btn-futuristic {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--vivid-neo-mint), var(--futuric-azure));
    border: none;
    color: var(--slate-core);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(29, 78, 216, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(29, 78, 216, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, var(--futuric-azure), var(--vivid-neo-mint));
    color: var(--slate-core);
}

.btn-futuristic i {
    transition: all 0.3s ease;
}

.btn-futuristic:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    #affiliate h2 {
        font-size: 2.2rem;
    }
    
    #affiliate h3 {
        font-size: 1.7rem;
    }
    
    .benefit-card .col-2 {
        display: none;
    }
    
    .benefit-card .col-10 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #affiliate {
        padding: 3rem 0;
    }
    
    #affiliate h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    #affiliate .lead {
        font-size: 1.2rem;
    }
    
    .btn-futuristic {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

/* === Contact Form === */
#contact {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(59, 130, 246, 0.1) 75%
    );
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

#contact .section-title {
    color: #000000;
    margin-bottom: 3rem;
}

#contact .section-title::after {
    background: linear-gradient(90deg, var(--vivid-neo-mint), var(--futuric-azure));
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        5px 5px 15px rgba(0, 0, 0, 0.1),
        -5px -5px 15px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.form-control {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5),
        0 0 15px rgba(29, 78, 216, 0.3);
    color: var(--dark-color);
    outline: none;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-contact {
    background: linear-gradient(45deg, var(--vivid-neo-mint), var(--futuric-azure));
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 10px rgba(20, 50, 140, 0.3),
        -5px -5px 10px rgba(40, 90, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 15px rgba(20, 50, 140, 0.4),
        -8px -8px 15px rgba(40, 90, 230, 0.4);
}

.btn-contact:active {
    transform: translateY(0);
    box-shadow: 
        inset 5px 5px 10px rgba(20, 50, 140, 0.3),
        inset -5px -5px 10px rgba(40, 90, 230, 0.3);
}

.btn-contact.sending {
    pointer-events: none;
    position: relative;
    padding-right: 45px;
}

.btn-contact.sending::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid var(--dark-color);
    border-right-color: transparent;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* === Footer === */
footer {
    background: #ffffff;
    color: #000000;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(59, 130, 246, 0.1) 75%
    );
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

footer .container {
    position: relative;
    z-index: 2;
}

footer p {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: none;
}

footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

footer .social-links a {
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--deep-trust-blue), var(--futuric-azure));
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

footer .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

footer .social-links a:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

footer .social-links a i {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    transition: all 0.3s ease;
}

footer .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: 1;
}

footer .social-links a:hover::before {
    left: 100%;
}

/* === Animations === */
@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.5s ease-out;
}

/* === SweetAlert Custom Styles === */
.swal-custom-popup {
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 
        20px 20px 60px rgba(20, 50, 140, 0.3),
        -20px -20px 60px rgba(40, 90, 230, 0.3) !important;
}

.swal-custom-title {
    font-family: 'Orbitron', sans-serif !important;
    color: var(--dark-color) !important;
}

.swal-custom-content {
    color: var(--dark-color) !important;
    font-family: 'Montserrat', sans-serif !important;
}

.swal2-timer-progress-bar {
    background: linear-gradient(90deg, var(--vivid-neo-mint), var(--futuric-azure)) !important;
}

/* === Button Styles === */
.btn-futuristic {
    background: linear-gradient(45deg, var(--deep-trust-blue), var(--futuric-azure));
    border: none;
    color: var(--light-color);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    z-index: 1;
    font-size: 1.1rem;
}

.btn-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: var(--light-color);
}

.btn-futuristic:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.btn-futuristic:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .btn-futuristic {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* === Affiliate Types Section === */
.affiliate-types .row {
    display: flex;
    flex-wrap: wrap;
}

.affiliate-types .col-md-4 {
    display: flex;
}

.neomorphic-card {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.1),
        -3px -3px 8px rgba(255, 255, 255, 0.5);
}

.neomorphic-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        12px 12px 20px rgba(20, 50, 140, 0.6),
        -12px -12px 20px rgba(40, 90, 230, 0.6),
        inset 2px 2px 2px rgba(255, 255, 255, 0.3);
}

.neomorphic-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--deep-trust-blue), var(--futuric-azure), var(--vivid-neo-mint));
    z-index: -2;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
}

.neomorphic-card:hover::before {
    opacity: 0.3;
}

.neomorphic-card .card-image-wrapper {
    padding: 15px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
}

.neomorphic-card .card-img-top {
    border-radius: 12px;
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.neomorphic-card .card-body {
    padding: 12px;
    background: var(--dark-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 90px;
    display: flex;
    flex-direction: column;
}

.neomorphic-card .card-title {
    color: var(--light-color);
    margin-bottom: 0.2rem;
    text-shadow: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
}

.neomorphic-card .card-text {
    color: var(--light-color);
    opacity: 0.8;
    line-height: 1.2;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 5px;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Media Queries for Affiliate Types */
@media (max-width: 768px) {
    .neomorphic-card {
        margin-bottom: 30px;
    }
    
    .neomorphic-card .card-body {
        padding: 20px;
    }
}

/* Trusted By Section */
.trusted-by {
    background: #ffffff;
    position: relative;
    color: #000000;
    padding: 6rem 0;
    overflow: hidden;
}

/* Main title styles */
.trusted-by h1, 
.trusted-by h2,
.trusted-by .section-title {
    color: #000000 !important;
    text-align: center;
    margin-bottom: 1rem;
}

/* Subtitle specific styles */
.trusted-by p:not(.stat-item p):not(.trusted-stats p) {
    color: #000000 !important;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Ensure stats remain white */
.trusted-stats .stat-item h3,
.trusted-stats .stat-item p {
    color: #ffffff !important;
}

.trusted-stats .stat-item {
    background: var(--deep-trust-blue);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vivid-neo-mint);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        8px 8px 16px rgba(20, 50, 140, 0.5),
        -8px -8px 16px rgba(40, 90, 230, 0.5),
        inset 1px 1px 1px rgba(52, 211, 153, 0.2);
}

.trusted-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--vivid-neo-mint), transparent 50%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.trusted-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 20px rgba(20, 50, 140, 0.6),
        -12px -12px 20px rgba(40, 90, 230, 0.6),
        inset 1px 1px 1px rgba(52, 211, 153, 0.3);
}

.trusted-stats .stat-item:hover::before {
    opacity: 1;
}

.trusted-stats h3 {
    color: var(--light-color);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.trusted-stats p {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .trusted-by .company-logo {
        max-height: 45px;
    }
    
    .trusted-stats h3 {
        font-size: 2rem;
    }
    
    .trusted-stats p {
        font-size: 0.9rem;
    }
    
    .logo-wrapper {
        padding: 15px;
    }
}

/* Material Design Icons Fix */
.mdi::before {
    font-size: inherit;
    line-height: inherit;
}

i.mdi {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
}

.feature-box i.mdi,
.testimonial-content i.mdi,
.app-card i.mdi {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rating i.mdi {
    font-size: 18px;
    color: #ffd700;
}

.social-links i.mdi {
    font-size: 24px;
    color: var(--light-color);
}

.trusted-by .subtitle,
.trusted-by > p {
    color: #000000 !important;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.trusted-stats .stat-item {
    text-align: center;
    background: var(--deep-trust-blue);
}

.trusted-stats .stat-item h3,
.trusted-stats .stat-item p {
    color: #ffffff !important;
}

.trusted-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.trusted-stats p {
    font-size: 1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.9;
}

.commission-card {
    background: var(--deep-trust-blue);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: #ffffff;
    box-shadow: 
        8px 8px 16px rgba(20, 50, 140, 0.5),
        -8px -8px 16px rgba(40, 90, 230, 0.5),
        inset 1px 1px 1px rgba(52, 211, 153, 0.2);
    position: relative;
    overflow: hidden;
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--vivid-neo-mint), transparent 50%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.commission-card:hover::before {
    opacity: 1;
}

.commission-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
}

.commission-card p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.commission-text-card {
    background: var(--deep-trust-blue);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.commission-text-card p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.commission-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--vivid-neo-mint), transparent 50%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

