/* 
 * Fctracery - Main Stylesheet
 * Developed for API integration services with banks and fintech platforms
 * Version: 1.0.0
 * Updated: January 2026
 */


:root {
  
  --primary-deep-blue: #0A3D62;
  --primary-royal-purple: #5758BB;
  
  
  --secondary-teal: #006778;
  --secondary-light-blue: #4D9DE0;
  
  
  --bg-light-gray: #F8F9FA;
  --bg-white: #FFFFFF;
  --bg-dark-blue: #051E31;
  
  
  --accent-bright-blue: #1E90FF;
  --accent-success-green: #28A745;
  
  
  --text-dark: #212529;
  --text-gray: #6C757D;
  --text-light: #F8F9FA;
  
  
  --gradient-primary: linear-gradient(135deg, #0A3D62 0%, #5758BB 100%);
  --gradient-secondary: linear-gradient(135deg, #006778 0%, #4D9DE0 100%);
  
  
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

a {
  color: var(--accent-bright-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-royal-purple);
}


.section-title {
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin-top: 0.5rem;
}


.text-primary {
  color: var(--primary-deep-blue) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}




.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}


.hero-section {
  background: var(--gradient-primary);
  position: relative;
  color: var(--text-light);
  padding: 100px 0 50px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section-alt {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 120px 0 50px;
}


.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(10, 61, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep-blue);
  margin-bottom: 1.25rem;
}

.feature-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}


.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}


.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex-basis: 25%;
  min-width: 120px;
}


.quote-box {
  position: relative;
  border-radius: var(--radius-lg);
}


.implementation-timeline {
  position: relative;
  padding: 2rem 0;
}

.implementation-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2rem;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}


.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(87, 88, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.impact-card {
  border-radius: var(--radius-md);
}


.future-timeline {
  position: relative;
}

.future-item {
  padding-bottom: 1.5rem;
  position: relative;
}


.contact-card {
  border-radius: var(--radius-lg);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-deep-blue);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-deep-blue);
  color: white;
}


.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
}


.thank-you-section {
  background: var(--bg-light-gray);
  padding-top: 100px;
}

.check-icon {
  width: 70px;
  height: 70px;
}

.step {
  text-align: center;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: var(--primary-deep-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
}


.footer {
  background-color: var(--bg-dark-blue);
}

.footer a:hover {
  color: white !important;
}




.bg-primary {
  background-color: var(--primary-deep-blue) !important;
}

.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
  background: var(--gradient-secondary) !important;
}


.btn {
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #072f4a 0%, #4546a0 100%);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-deep-blue);
  border-color: var(--primary-deep-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-deep-blue);
  color: white;
}


.rounded-4 {
  border-radius: var(--radius-lg) !important;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1050;
  display: none;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}




@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 35px;
  }
  
  .hero-section {
    padding-top: 120px;
    padding-bottom: 30px;
  }
  
  .card-img-top {
    height: 160px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .implementation-timeline::before {
    left: 16px;
  }
  
  .timeline-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
  }
  
  .cookie-consent-actions .btn {
    width: 100%;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding-top: 150px;
  }
}


@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .implementation-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    order: -1;
  }
  
  .timeline-number {
    position: relative;
    margin: 0 10px;
    z-index: 1;
  }
  
  .timeline-content {
    width: calc(50% - 70px);
  }
}


@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(10, 61, 98, 0.25);
  border-color: var(--primary-deep-blue);
}

.form-check-input:checked {
  background-color: var(--primary-deep-blue);
  border-color: var(--primary-deep-blue);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(10, 61, 98, 0.25);
  border-color: var(--primary-deep-blue);
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


.privacy-content h3,
.terms-content h3,
.cookie-content h3 {
  color: var(--primary-deep-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content ul,
.terms-content ul,
.cookie-content ul {
  margin-bottom: 1.5rem;
}