/* Terms Page Styles */
.section__terms-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__terms-content {
    background-color: #ffffff;
}

.terms-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.terms-subsection {
    margin-bottom: 2rem;
}

.terms-subsection h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-subsection p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

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

.terms-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-cta {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.terms-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.terms-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.terms-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer Color Improvements */

/* Footer Background with Gradient */
.body__footer {
  background: 
    radial-gradient(circle at top left, rgba(242, 89, 57, 0.08), transparent 50%),
    radial-gradient(circle at bottom right, rgba(27, 108, 134, 0.06), transparent 50%),
    var(--secondary-color) !important;
  position: relative;
}

.body__footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

/* Footer Logo */
.footer__logo {
  color: #ffffff !important;
  transition: var(--transition-fast);
}

.footer__logo:hover {
  color: var(--primary-color) !important;
}

/* Footer Text */
.footer__text, 
.footer__bottom p {
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.7;
}

/* Footer Links */
.footer__links a {
  color: rgba(255, 255, 255, 0.7) !important;
  display: inline-block;
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--primary-color) !important;
  transform: translateX(4px);
}

.footer__links li {
  margin-bottom: 10px;
}

/* Footer Social Icons */
.footer__social a {
  color: rgba(255, 255, 255, 0.8) !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-size: 1.4rem !important;
}

.footer__social a:hover {
  color: #ffffff !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(242, 89, 57, 0.3) !important;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 24px !important;
  margin-top: 40px !important;
}

.footer__bottom a {
  color: rgba(255,255,255,0.85) !important;
  transition: var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--primary-color) !important;
}

/* Footer Headings */
.body__footer h6.text-white {
  color: #ffffff !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Disclaimer Section */
.disclamer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 24px !important;
  margin-top: 24px !important;
}

.disclamer__legal p {
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
  opacity: 1 !important;
}

.disclamer__legal p span {
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Contact Info Icons */
.footer__links li i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Privacy Policy Page Styles */
.section__privacy-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__privacy-content {
    background-color: #ffffff;
}

.privacy-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.privacy-subsection {
    margin-bottom: 2rem;
}

.privacy-subsection h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-subsection p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-cta {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.privacy-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.privacy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Privacy, Terms, NDA, and FAQ Page CTA Button - Ensure text is visible */
.privacy-cta .cta-button,
.terms-cta .cta-button,
.nda-cta .cta-button,
.faq-cta .cta-button {
    color: #ffffff !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.privacy-cta .cta-button:hover,
.terms-cta .cta-button:hover,
.nda-cta .cta-button:hover,
.faq-cta .cta-button:hover {
    color: #ffffff !important;
    background: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark) !important;
}

.privacy-cta .cta-button span,
.terms-cta .cta-button span,
.nda-cta .cta-button span,
.faq-cta .cta-button span {
    color: #ffffff !important;
}

.privacy-cta .cta-button i,
.terms-cta .cta-button i,
.nda-cta .cta-button i,
.faq-cta .cta-button i {
    color: #ffffff !important;
}

/* FAQ Page Styles */
.section__faq-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__faq-content {
    background-color: #ffffff;
}

.faq-content {
    color: var(--text-dark);
    line-height: 1.8;
}

/* FAQ Tabs Navigation - Vertical on Desktop */
.faq-tabs-vertical {
    border-right: 2px solid rgba(226, 232, 240, 0.8);
    padding-right: 1rem;
}

.faq-tabs-vertical .nav-link {
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    padding: 0.875rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    text-align: left;
    width: 100%;
}

.faq-tabs-vertical .nav-link:hover {
    color: var(--primary-color);
    background: rgba(242, 89, 57, 0.05);
    border-left-color: rgba(242, 89, 57, 0.3);
}

.faq-tabs-vertical .nav-link.active {
    color: var(--primary-color);
    background: rgba(242, 89, 57, 0.08);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.faq-tabs-vertical .nav-link i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    width: 18px;
    text-align: center;
}

/* FAQ Tab Content */
.tab-content {
    padding-left: 1.5rem;
}

@media (max-width: 991.98px) {
    .faq-tabs-vertical {
        border-right: none;
        border-bottom: 2px solid rgba(226, 232, 240, 0.8);
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-tabs-vertical .nav-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        margin-bottom: 0.25rem;
    }
    
    .faq-tabs-vertical .nav-link:hover {
        border-left-color: transparent;
        border-bottom-color: rgba(242, 89, 57, 0.3);
    }
    
    .faq-tabs-vertical .nav-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    
    .tab-content {
        padding-left: 0;
    }
}

.faq-items {
    min-height: 300px;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-question::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer {
    padding-left: 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: justify;
}

/* Responsive FAQ Tabs */
@media (max-width: 767.98px) {
    .faq-tabs {
        flex-direction: column;
    }
    
    .faq-tabs .nav-link {
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        border-left: 3px solid transparent;
        margin-bottom: 0;
        text-align: left;
    }
    
    .faq-tabs .nav-link.active {
        border-left-color: var(--primary-color);
        border-bottom-color: rgba(226, 232, 240, 0.8);
    }
    
    .faq-tabs .nav-link:hover {
        border-left-color: rgba(242, 89, 57, 0.3);
    }
}

.faq-cta {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.faq-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.faq-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* FAQ Page CTA Button - Ensure text is visible */
.faq-cta .cta-button {
    color: #ffffff !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.faq-cta .cta-button:hover {
    color: #ffffff !important;
    background: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark) !important;
}

.faq-cta .cta-button span {
    color: #ffffff !important;
}

.faq-cta .cta-button i {
    color: #ffffff !important;
}

/* NDA Page Styles */
.section__nda-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__nda-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__nda-content {
    background-color: #ffffff;
}

.nda-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.nda-section {
    margin-bottom: 3rem;
}

.nda-section header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.nda-subsection {
    margin-bottom: 2rem;
}

.nda-subsection h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.nda-subsection p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

.nda-cta {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.nda-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.nda-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nda-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* NDA Page CTA Button - Ensure text is visible */
.nda-cta .cta-button {
    color: #ffffff !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.nda-cta .cta-button:hover {
    color: #ffffff !important;
    background: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark) !important;
}

.nda-cta .cta-button span {
    color: #ffffff !important;
}
