/* ===== STRATEGY CONSULTATION SECTION CSS ===== */

.consultation-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #12131e 0%, #1e1e28 100%);
}

/* Add padding to consultation column */
.consultation-section .col-lg-5.pe-lg-4.p-0 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

/* Responsive adjustments for the column padding */
@media (max-width: 991px) {
    .consultation-section .col-lg-5.pe-lg-4.p-0 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 576px) {
    .consultation-section .col-lg-5.pe-lg-4.p-0 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@keyframes pulse {
    0% { opacity: 0.05; }
    100% { opacity: 0.12; }
}

.consultation-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(30, 30, 40, 0.6);
    border-radius: 24px;
    padding: 70px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.07);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.consultation-wrapper:hover {
    transform: translateY(-5px);
}

.consultation-title {
    font-size: 37px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.consultation-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7ED321, transparent);
    border-radius: 2px;
}

.consultation-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-align: left;
    width: 600px;
    max-width: 100%;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 15px 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    height: 180px;
    justify-content: flex-start;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(126, 211, 33, 0.1);
    color: #7ED321;
    font-size: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item:nth-child(2) .benefit-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.benefit-item:nth-child(3) .benefit-icon {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}

.benefit-item:nth-child(4) .benefit-icon {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
}

.benefit-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.benefit-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.consultation-form-wrapper {
    background: rgba(20, 20, 25, 0.6);
    padding: 40px 35px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

@keyframes shiny {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.consultation-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.consultation-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #7ED321;
    border-radius: 2px;
}

.consultation-form .form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.consultation-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 15px;
    height: auto;
    transition: all 0.4s ease;
}

.consultation-form .form-control:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(126, 211, 33, 0.4);
    box-shadow: 0 0 0 4px rgba(126, 211, 33, 0.1);
    transform: translateY(-2px);
}

.consultation-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus::placeholder {
    opacity: 0.7;
    transform: translateX(5px);
}

.consultation-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    background-color: rgba(255, 255, 255, 0.05);
    padding-right: 40px;
    cursor: pointer;
    position: relative;
}

.consultation-form .select-wrapper {
    position: relative;
    display: block;
}

.consultation-form .select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.consultation-form .select-wrapper:hover::after {
    color: #7ED321;
    transform: translateY(-50%) rotate(180deg);
}

.light-theme .consultation-form .select-wrapper::after {
    color: rgba(0, 0, 0, 0.4);
}

.consultation-form select.form-control option {
    background-color: #1e1e28;
    color: #fff;
    padding: 12px;
    font-size: 15px;
}

.light-theme .consultation-form select.form-control option {
    background-color: #f5f5f7;
    color: #333;
}

.light-theme .consultation-form select.form-control {
    background-image: none;
}

.consultation-form textarea.form-control {
    resize: none;
    min-height: 140px;
}

.consultation-form .btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    border: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(126, 211, 33, 0.2);
}

.consultation-form .btn-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9c27b0, #7ED321);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.consultation-form .btn-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(126, 211, 33, 0.25);
}

.consultation-form .btn-block:hover::before {
    opacity: 1;
}

.consultation-form .btn-block:active {
    transform: translateY(-2px);
}

.consultation-form .btn-block span {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.consultation-form .btn-block:hover span {
    transform: scale(1.05);
}

.form-privacy-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.form-privacy-note i {
    margin-right: 5px;
    color: #7ED321;
}

/* Light Theme Styles for Consultation Section */
.light-theme .consultation-section {
    background: linear-gradient(135deg, rgba(250, 250, 255, 0.95) 0%, rgba(240, 240, 250, 0.95) 100%);
}

.light-theme .consultation-wrapper {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.light-theme .consultation-title {
    background: linear-gradient(135deg, #333333 0%, #777777 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-theme .consultation-title::after {
    background: linear-gradient(90deg, #7ED321, rgba(126, 211, 33, 0.2));
}

.light-theme .consultation-description {
    color: #555;
}

.light-theme .benefit-item p {
    color: #555;
}

.light-theme .benefit-item::before {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.1) 0%, rgba(156, 39, 176, 0.07) 100%);
}

.light-theme .benefit-item:hover p {
    color: #333;
}

.light-theme .consultation-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}


.light-theme .consultation-form-wrapper h3 {
    color: #333;
}

.light-theme .consultation-form .form-control {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #333;
}

.light-theme .consultation-form .form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(126, 211, 33, 0.3);
    box-shadow: 0 0 0 4px rgba(126, 211, 33, 0.08);
}

.light-theme .consultation-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.light-theme .form-privacy-note {
    color: rgba(0, 0, 0, 0.5);
}

/* Media Queries for Consultation Section */
@media (min-width: 992px) {
    .consultation-wrapper {
        padding: 60px 50px;
    }
    
    .consultation-form-wrapper {
        margin-left: 10px;
    }
}

@media (max-width: 991px) {
    .consultation-section {
        padding: 100px 0;
    }
    
    .consultation-wrapper {
        padding: 40px 30px;
    }
    
    .consultation-form-wrapper {
        margin-top: 40px;
    }
    
    .consultation-title {
        font-size: 32px;
    }
    
    .consultation-description {
        font-size: 18px;
        width: 100%;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-content h4 {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .consultation-section {
        padding: 80px 0;
    }
    
    .consultation-wrapper {
        padding: 30px 20px;
    }
    
    .consultation-form-wrapper {
        padding: 30px 25px;
    }
    
    .consultation-title {
        font-size: 28px;
    }
    
    .consultation-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .consultation-tagline {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .consultation-value-props {
        margin: 20px 0;
    }
    
    .value-prop-item {
        margin-bottom: 10px;
    }
    
    .value-prop-item p {
        font-size: 14px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }
    
    .benefit-item {
        height: auto;
        min-height: 160px;
    }
    
    .benefit-content p {
        height: auto;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .consultation-section {
        padding: 60px 0;
    }
    
    .consultation-wrapper {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .consultation-form-wrapper {
        padding: 25px 20px;
        border-radius: 14px;
    }
    
    .consultation-title {
        font-size: 22px;
        font-weight: 900;
    }
    
    .consultation-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .consultation-benefits {
        gap: 12px;
        margin: 25px 0;
    }
    
    .benefit-item {
        padding: 12px;
        min-height: 150px;
    }
    
    .benefit-content h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .benefit-content p {
        font-size: 13px;
        max-height: 55px;
    }
    
    .consultation-form .form-group {
        margin-bottom: 15px;
    }
    
    .consultation-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .consultation-form-wrapper h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .consultation-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-item:first-child::after {
        display: none;
    }
    
    .stats-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .stats-item:last-child {
        border-bottom: none;
    }
    
    .light-theme .stats-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .stats-number {
        font-size: 40px;
    }
    
    .stats-number span {
        font-size: 20px;
    }
    
    .consultation-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .consultation-tagline {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .value-prop-item {
        margin-bottom: 8px;
    }
    
    .value-prop-check {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-right: 10px;
    }
    
    .value-prop-check i {
        font-size: 10px;
    }
    
    .value-prop-item p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .quote-mark {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .author-image {
        width: 35px;
        height: 35px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-company {
        font-size: 11px;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 15px;
    }
    
    .slots-remaining {
        font-size: 13px;
    }
    
    .form-privacy-note {
        font-size: 12px;
        line-height: 1.4;
    }
}

.consultation-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.consultation-element-1 {
    width: 600px;
    height: 600px;
    background: rgba(126, 211, 33, 0.1);
    top: -150px;
    right: -200px;
    animation: float 25s infinite alternate ease-in-out;
}

.consultation-element-2 {
    width: 700px;
    height: 700px;
    background: rgba(154, 122, 249, 0.07);
    bottom: -250px;
    left: -250px;
    animation: float 30s infinite alternate-reverse ease-in-out;
}

.consultation-element-3 {
    width: 300px;
    height: 300px;
    background: rgba(156, 39, 176, 0.06);
    top: 40%;
    right: 15%;
    animation: float 20s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
    100% { transform: translate(-30px, 15px) rotate(-5deg); }
}

.light-theme .consultation-element-1 {
    background: rgba(126, 211, 33, 0.06);
}

.light-theme .consultation-element-2 {
    background: rgba(154, 122, 249, 0.04);
}

.light-theme .consultation-element-3 {
    background: rgba(156, 39, 176, 0.03);
}

/* Additional form effects */
.consultation-form .form-group {
    position: relative;
    z-index: 1;
}

.consultation-form .form-control:focus + label,
.consultation-form .form-control:not(:placeholder-shown) + label {
    color: #7ED321;
    transform: scale(1.05);
}

.light-theme .consultation-form .form-control:focus + label,
.light-theme .consultation-form .form-control:not(:placeholder-shown) + label {
    color: #7ED321;
}

/* Button hover effect enhancement */
.consultation-form .btn-submit {
    position: relative;
    overflow: hidden;
}

.consultation-form .btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.consultation-form .btn-submit:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.consultation-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 25px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.stats-item:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(126, 211, 33, 0.3), transparent);
    transform: translateY(-50%);
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stats-number span {
    font-size: 24px;
    margin-left: 2px;
    opacity: 0.8;
}

.stats-label {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.light-theme .consultation-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.light-theme .stats-number {
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-theme .stats-item:first-child::after {
    background: linear-gradient(to bottom, transparent, rgba(126, 211, 33, 0.2), transparent);
}

.light-theme .stats-label {
    color: rgba(0, 0, 0, 0.6);
}

/* Responsive styles for stats */
@media (max-width: 576px) {
    .consultation-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-item:first-child::after {
        display: none;
    }
    
    .stats-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .stats-item:last-child {
        border-bottom: none;
    }
    
    .light-theme .stats-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
}

.consultation-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.15), rgba(156, 39, 176, 0.15));
    color: #7ED321;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(126, 211, 33, 0.2);
}

.consultation-tagline {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.4;
}

.consultation-tagline .highlight {
    color: #7ED321;
    font-weight: 700;
    position: relative;
}

.consultation-tagline .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7ED321;
    opacity: 0.4;
}

.consultation-value-props {
    margin: 25px 0;
    padding: 0;
}

.value-prop-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.value-prop-check {
    background: rgba(126, 211, 33, 0.15);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    margin-top: 2px;
}

.value-prop-check i {
    color: #7ED321;
    font-size: 12px;
}

.value-prop-item p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote-mark i {
    color: #fff;
    font-size: 12px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(126, 211, 33, 0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.author-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.consultation-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(126, 211, 33, 0.4);
    box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.1);
}

.slots-remaining {
    font-size: 14px;
    color: #ff9500;
    text-align: center;
    margin-top: 15px;
}

.slots-remaining i {
    margin-right: 5px;
}

.slots-remaining strong {
    font-weight: 600;
}

.btn-submit {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

.form-privacy-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.form-privacy-note a {
    color: #7ED321;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-privacy-note a:hover {
    text-decoration: underline;
}

.light-theme .consultation-badge {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.1), rgba(156, 39, 176, 0.1));
    color: #7ED321;
    border: 1px solid rgba(126, 211, 33, 0.15);
}

.light-theme .consultation-tagline {
    color: #555;
}

.light-theme .value-prop-item p {
    color: #555;
}

.light-theme .benefit-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.light-theme .benefit-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.light-theme .benefit-content h4 {
    color: #333;
}

.light-theme .benefit-content p {
    color: #666;
}

.light-theme .testimonial-text {
    color: #555;
}

.light-theme .author-name {
    color: #333;
}

.light-theme .author-company {
    color: #666;
}

.light-theme .consultation-form .form-control {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #333;
}

.light-theme .consultation-form .form-control:focus {
    background: #fff;
    border-color: rgba(126, 211, 33, 0.3);
}

.light-theme .form-privacy-note {
    color: #777;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-content h4 {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .consultation-tagline {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .consultation-value-props {
        margin: 20px 0;
    }
    
    .value-prop-item {
        margin-bottom: 10px;
    }
    
    .value-prop-item p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .consultation-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .consultation-tagline {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .value-prop-item {
        margin-bottom: 8px;
    }
    
    .value-prop-check {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-right: 10px;
    }
    
    .value-prop-check i {
        font-size: 10px;
    }
    
    .value-prop-item p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .quote-mark {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .author-image {
        width: 35px;
        height: 35px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-company {
        font-size: 11px;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 15px;
    }
    
    .slots-remaining {
        font-size: 13px;
    }
    
    .form-privacy-note {
        font-size: 12px;
        line-height: 1.4;
    }
}

.consultation-form .form-control.is-invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.consultation-form .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 13px;
    color: #dc3545;
    font-weight: 400;
}

.consultation-form .form-control.is-invalid + .invalid-feedback,
.consultation-form .form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.consultation-form .form-control:focus.is-invalid {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.consultation-form .was-validated .form-control:invalid,
.consultation-form .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.consultation-form .was-validated .form-control:valid,
.consultation-form .form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.consultation-form .select-wrapper .form-control.is-invalid {
    background-position: right 2rem center;
}

.consultation-form .select-wrapper.is-invalid::after {
    color: #dc3545;
}
