     /* Custom Styles */
:root {
--bs-dark-blue: #0d1f38;
--bs-teal: #33d1c4;
--bs-light-gray: #f8f9fa;
--bs-body-font-family: 'Inter', sans-serif;
--bs-body-color: #495057;
--bs-body-bg: #fff;
}

body {
font-family: var(--bs-body-font-family);
color: var(--bs-body-color);
background-color: var(--bs-body-bg);
}

/* --- Custom Utility Classes --- */
.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-extrabold { font-weight: 800 !important; }

.text-dark-blue { color: var(--bs-dark-blue) !important; }
.bg-dark-blue { background-color: var(--bs-dark-blue) !important; }
.text-teal { color: var(--bs-teal) !important; }
.bg-teal { background-color: var(--bs-teal) !important; }

.btn-teal {
background-color: var(--bs-teal);
color: var(--bs-dark-blue);
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
transition: all 0.3s ease;
}

.btn-teal:hover {
background-color: #2ab8ac;
color: var(--bs-dark-blue);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(51, 209, 196, 0.2);
}

.btn-outline-light-custom {
border-color: rgba(255, 255, 255, 0.4);
color: white;
padding: 0.75rem 1.5rem;
font-weight: 600;
border-radius: 0.5rem;
transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
background-color: white;
color: var(--bs-dark-blue);
}

.section-py { padding-top: 1.5rem; padding-bottom: 2rem; }

h1, h2, h3 {
color: var(--bs-dark-blue);
font-weight: 700;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; }

@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
.section-py { padding-top: 1.5rem; padding-bottom: 2rem; }
}

/* --- Navbar --- */
.navbar {
padding: 1.5rem 0;
}

.navbar-brand {
font-weight: 800;
font-size: 1.5rem;
color: var(--bs-dark-blue) !important;
}

.nav-link {
color: #6c757d;
font-weight: 500;
}

.nav-link:hover {
color: var(--bs-dark-blue);
}

.btn-nav-login {
background: transparent;
border: 1px solid #dee2e6;
color: var(--bs-dark-blue);
font-weight: 600;
border-radius: 0.5rem;
}
.btn-nav-login:hover {
background: #f8f9fa;
}

.btn-nav-signup {
background: var(--bs-dark-blue);
color: white;
font-weight: 600;
border-radius: 0.5rem;
}
.btn-nav-signup:hover {
background: #091526;
}

/* --- Hero Section --- */
.hero-section {
padding-top: 4rem;
padding-bottom: 6rem;
}

.hero-card {
/*background-color: var(--bs-dark-blue);*/
color: white;
padding: 2rem;
border-radius: 1.5rem;
transform: rotate(-5deg);
max-width: 380px;
margin: auto;
}

.hero-card-header {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-card-balance {
font-size: 2.5rem;
font-weight: 700;
margin-top: 2rem;
}

.hero-card .form-select {
background-color: rgba(255,255,255,0.1);
color: white;
border: 0;
}

.hero-card .btn-pay {
background-color: var(--bs-teal);
color: var(--bs-dark-blue);
width: 100%;
padding: 1rem;
font-size: 1.1rem;
font-weight: 700;
border-radius: 0.75rem;
border: 0;
}
.hero-card .btn-pay:hover {
background-color: #2ab8ac;
}

.trusted-by-logos img {
max-height: 25px;
filter: grayscale(100%);
opacity: 0.6;
transition: all 0.3s ease;
}

.trusted-by-logos img:hover {
filter: grayscale(0%);
opacity: 1;
}
.padded-lower{
padding-bottom: 220px;
}

/* --- Features Section --- */
.elevated-section{
margin-top: -200px;
}

.elevated-section {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 15px 35px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.elevated-section:hover {
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09), 0 20px 40px rgba(0, 0, 0, 0.15);
transform: translateY(-2px);
}
.features-section {
background-color: var(--bs-light-gray);
border-radius: 2rem;
}

.feature-icon {
font-size: 2rem;
color: var(--bs-teal);
}

/* --- Why Finpay Section --- */
.stat-card, .plan-card {
background-color: var(--bs-light-gray);
border-radius: 1rem;
padding: 2rem;
height: 100%;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--bs-teal);
}

.graph-placeholder {
width: 100%;
height: 150px;
position: relative;
margin-top: 1rem;
}
.graph-placeholder svg {
width: 100%;
height: 100%;
}

/* --- Maximize Section --- */
.maximize-section {
background-color: var(--bs-dark-blue);
color: white;
}
.maximize-section h2, .maximize-section p {
color: white;
}
.maximize-section .step-icon {
font-size: 2rem;
color: var(--bs-teal);
}
.maximize-section .step-title {
color: white;
}

/* --- Pricing Section --- */
.plan-card {
border: 1px solid #e9ecef;
transition: all 0.3s ease;
}
.plan-card.premium {
background-color: var(--bs-dark-blue);
color: white;
border-color: var(--bs-dark-blue);
transform: scale(1.05);
box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
}
.plan-card.premium h3, .plan-card.premium .price, .plan-card.premium p {
color: white;
}
.plan-card .price {
font-size: 2.5rem;
font-weight: 700;
}
.plan-card .price small {
font-size: 1rem;
font-weight: 400;
color: #6c757d;
}
.plan-card.premium .price small {
color: rgba(255,255,255,0.7);
}

.form-check-input:checked {
background-color: var(--bs-teal);
border-color: var(--bs-teal);
}

/* --- CTA Section --- */
.cta-section {
background-color: var(--bs-dark-blue);
border-radius: 1.5rem;
}
.cta-section h2, .cta-section p {
color: white;
}

/* --- Footer --- */
.footer {
padding-top: 5rem;
padding-bottom: 2rem;
}
.footer-link {
color: #6c757d;
text-decoration: none;
transition: all 0.2s ease;
}
.footer-link:hover {
color: var(--bs-dark-blue);
text-decoration: underline;
}
.social-icon {
color: #6c757d;
font-size: 1.5rem;
transition: all 0.2s ease;
}
.social-icon:hover {
color: var(--bs-dark-blue);
}

/* --- FAQ Page Specifics --- */
.accordion-button {
font-weight: 600;
color: var(--bs-dark-blue);
}
.accordion-button:not(.collapsed) {
background-color: rgba(51, 209, 196, 0.1);
color: var(--bs-dark-blue);
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
}
.accordion-button:focus {
box-shadow: 0 0 0 0.25rem rgba(51, 209, 196, 0.5);
}
.accordion-item {
border-color: #dee2e6;
}

.level-one-background{
background-color: #f5f9f9;
}
.w-front-logo{
width: 200px;
height: auto;
}
.flag-images-lang{
width: 24px;
height: auto;
}
.partner-box, .customer-box{
padding-top: 10%;
}
.badge-payments{
background-color: #eff2f6;
border-radius: 5px;
box-shadow: 2px 2px 2px 2px #eff2f6;
padding:10px;
font-weight: bolder;
font-size: 1.2em;
}
.input-group-payment{
width: 80%!important;
}

.input-group-payment input
{
height: 45px;
}
.image-fa-size{
    height: 32px;
    width: 20%;
    margin-left: 20%;
}
#map_holder_block_front{
    height: 300px; 
    width: 100%; 
    position: relative;
}
img.w-260px{
    width: 260px;
    height: auto;
}

  .offcanvas-header {
    border-bottom: 1px solid #dee2e6;
  }

  .btn-group-radio .btn-check:checked+.btn-outline-primary {
    background-color: #000000;
    color: #fff;
  }

  .rating {
    display: inline-flex;
    flex-direction: row-reverse; 
    justify-content: flex-end;
  }
  .rating > input {
    display: none; 
  }
  .rating > label {
    cursor: pointer;
    font-size: 2rem;
    color: #e4e5e9;
    transition: color 0.2s;
  }
  .rating > input:checked ~ label,
  .rating:not(:checked) > label:hover,
  .rating:not(:checked) > label:hover ~ label {
    color: #ffc107; 
  }
  .rating > input:checked + label:hover,
  .rating > input:checked ~ label:hover,
  .rating > label:hover ~ input:checked ~ label,
  .rating > input:checked ~ label:hover ~ label {
    color: #ffc107;
  }
  .radio-border-single{
    border: 1px solid #000;
  }

  .radio-border-single label{
    border-right: 1px solid #000;
  }

  .radio-border-single label:hover{
    border: 2px solid #000 !important;
  }