/* Reusable styling for the features section on service pages */
.service-experience-badge {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a304a 100%);
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
    border: 1px solid rgba(240, 180, 41, 0.2);
    box-shadow: 0 12px 35px rgba(13, 27, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 180, 41, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.6s ease;
}

.service-experience-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 27, 42, 0.12);
}

.service-experience-badge:hover::before {
    transform: translate(10%, 10%);
}

.service-experience-badge .badge-number {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: #f0b429;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: -1px;
}

.service-experience-badge .badge-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 0.5px;
}

.service-experience-badge .badge-text span {
    color: #f0b429;
}

/* Premium Feature Cards on the Left Column */
.premium-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(13, 27, 42, 0.06);
    box-shadow: 0 8px 30px rgba(13, 27, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

.premium-feature-card.gold-card::before {
    background: linear-gradient(180deg, #f0b429 0%, #c5a461 100%);
}

.premium-feature-card.navy-card::before {
    background: linear-gradient(180deg, #0d1b2a 0%, #1a304a 100%);
}

.premium-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13, 27, 42, 0.08);
}

.premium-feature-card:hover.gold-card {
    border-color: rgba(240, 180, 41, 0.15);
}

.premium-feature-card:hover.navy-card {
    border-color: rgba(13, 27, 42, 0.15);
}

.feature-icon-container {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 20px;
}

.premium-feature-card.gold-card .feature-icon-container {
    background: linear-gradient(135deg, rgba(240, 180, 41, 0.12) 0%, rgba(197, 164, 97, 0.06) 100%);
    border: 1px solid rgba(240, 180, 41, 0.2);
    color: #f0b429;
}

.premium-feature-card.navy-card .feature-icon-container {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.06) 0%, rgba(26, 48, 74, 0.03) 100%);
    border: 1px solid rgba(13, 27, 42, 0.1);
    color: #0d1b2a;
}

.premium-feature-card:hover.gold-card .feature-icon-container {
    background: linear-gradient(135deg, #f0b429 0%, #c5a461 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px -6px rgba(240, 180, 41, 0.4);
}

.premium-feature-card:hover.navy-card .feature-icon-container {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a304a 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 20px -6px rgba(13, 27, 42, 0.3);
}

.premium-feature-card h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    font-family: 'Red Hat Display', sans-serif;
    transition: color 0.3s ease;
}

.premium-feature-card:hover.gold-card h6 {
    color: #f0b429;
}

.premium-feature-card:hover.navy-card h6 {
    color: #1a304a;
}

.premium-feature-card p {
    margin: 6px 0 0 0;
    font-size: 14.5px;
    color: #5d666f;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

/* Checkmarks area in Right Column */
.service-check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
}

.service-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 6px 0;
    transition: transform 0.2s ease;
}

.service-check-item:hover {
    transform: translateX(4px);
}

.service-check-item i {
    color: #f0b429;
    font-size: 18px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.service-check-item:hover i {
    transform: scale(1.2);
}

.service-check-item p {
    margin: 0;
    color: #1c2539;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.5;
}

/* Call Area */
.service-call-badge {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 30px;
    border: 1px solid rgba(13, 27, 42, 0.05);
    box-shadow: 0 10px 30px -10px rgba(13, 27, 42, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-call-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(13, 27, 42, 0.1);
    border-color: rgba(240, 180, 41, 0.15);
}

.service-call-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240, 180, 41, 0.1) 0%, rgba(197, 164, 97, 0.05) 100%);
    border: 1px solid rgba(240, 180, 41, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b429;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-call-badge:hover .service-call-icon {
    background: linear-gradient(135deg, #f0b429 0%, #c5a461 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05) rotate(-15deg);
}

.service-call-info span {
    font-size: 13px;
    color: #5d666f;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.service-call-info a {
    text-decoration: none;
}

.service-call-info h6 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 2px 0 0 0;
    font-family: 'Red Hat Display', sans-serif;
    transition: color 0.3s ease;
}

.service-call-badge:hover .service-call-info h6 {
    color: #f0b429;
}

/* Funding Option Cards (Business Financing Grid) */
.funding-option-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(13, 27, 42, 0.06);
    box-shadow: 0 10px 30px -10px rgba(13, 27, 42, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.funding-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(13, 27, 42, 0.1), 0 0 0 1px rgba(240, 180, 41, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.funding-option-card.dark-card {
    background: #0d1b2a;
    border-color: transparent;
    box-shadow: 0 10px 30px -10px rgba(13, 27, 42, 0.15);
}

.funding-option-card.dark-card:hover {
    box-shadow: 0 25px 50px -15px rgba(13, 27, 42, 0.25), 0 0 0 1px rgba(240, 180, 41, 0.3);
    background: linear-gradient(145deg, #0d1b2a 0%, #15293d 100%);
}

.funding-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.funding-option-card:not(.dark-card) .funding-icon-wrapper {
    background: linear-gradient(135deg, rgba(240, 180, 41, 0.1) 0%, rgba(197, 164, 97, 0.05) 100%);
    border: 1px solid rgba(240, 180, 41, 0.2);
    color: #f0b429;
}

.funding-option-card.dark-card .funding-icon-wrapper {
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.25);
    color: #f0b429;
}

.funding-icon-wrapper i {
    font-size: 24px;
    transition: all 0.4s ease;
}

.funding-option-card:hover .funding-icon-wrapper {
    background: linear-gradient(135deg, #f0b429 0%, #c5a461 100%);
    border-color: transparent;
    color: #ffffff !important;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px -6px rgba(240, 180, 41, 0.4);
}

.funding-option-card:hover .funding-icon-wrapper i {
    color: #ffffff !important;
}

.funding-option-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    font-family: 'Red Hat Display', sans-serif;
    transition: color 0.3s ease;
}

.funding-option-card:not(.dark-card) h4 {
    color: #0d1b2a;
}

.funding-option-card.dark-card h4 {
    color: #ffffff;
}

.funding-option-card:hover h4 {
    color: #f0b429;
}

.funding-option-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.funding-option-card:not(.dark-card) p {
    color: #5d666f;
}

.funding-option-card.dark-card p {
    color: rgba(255, 255, 255, 0.75);
}

.funding-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    transition: all 0.3s ease;
}

.funding-option-card:not(.dark-card) .funding-card-footer {
    border-top: 1px solid #f0f0f0;
}

.funding-option-card.dark-card .funding-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.funding-card-footer i {
    color: #f0b429;
    font-size: 15px;
    transition: all 0.3s ease;
}

.funding-option-card:hover .funding-card-footer i {
    transform: scale(1.2);
}

.funding-card-footer span {
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.funding-option-card:not(.dark-card) .funding-card-footer span {
    color: #5d666f;
}

.funding-option-card.dark-card .funding-card-footer span {
    color: rgba(255, 255, 255, 0.65);
}

