/* ==========================================================================
   Enhancements CSS - Farsight Consultancy
   ========================================================================== */

/* --- Variables --- */
:root {
    --color-primary: #ca5703;
    --color-secondary: #ff7a18;
    --color-dark: #1a1a1a;
    --color-light: #ffffff;
    --color-grey: #f4f4f4;
    --gradient-primary: linear-gradient(135deg, #ca5703 0%, #ff7a18 100%);
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- Global Utilities --- */
.text-gradient {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(202, 87, 3, 0.3);
    color: white;
}

.btn-outline-premium {
    background: transparent;
    color: var(--color-dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-premium:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* --- Hero Section Enhanced --- */
/* --- Hero Section Enhanced --- */
.hero-enhanced {
    position: relative;
    padding: 140px 0 100px;
    background-color: #f9f9f9;
    /* restored light background for contrast */
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(202, 87, 3, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-orange-shape {
    position: absolute;
    top: 15%;
    right: 5%;
    /* Moved to right to sit behind image */
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff7a18 0%, #ca5703 100%);
    filter: blur(80px);
    /* Reduced blur for more visibility */
    opacity: 0.15;
    /* Increased opacity */
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.hero-content .lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 45px;
    max-width: 90%;
}

/* Fixed Image Wrapper with Pattern */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    margin-left: -30px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    mask-image: radial-gradient(black 40%, transparent 70%);
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-enhanced {
        padding-top: 120px;
    }

    .hero-image-wrapper {
        display: none !important;
    }
}

/* --- Partners Strip --- */
.partners-strip {
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.partners-strip h6 {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    align-items: center;
}

/* Partner Animation Config */
.partners-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.3s ease;
    /* Apply animation */
    animation: partnerFlash 4s infinite;
}

/* Staggered animation delays */
.partners-logos img:nth-child(1) {
    animation-delay: 0.0s;
}

.partners-logos img:nth-child(2) {
    animation-delay: 0.8s;
}

.partners-logos img:nth-child(3) {
    animation-delay: 1.6s;
}

.partners-logos img:nth-child(4) {
    animation-delay: 2.4s;
}

.partners-logos img:nth-child(5) {
    animation-delay: 3.2s;
}

@keyframes partnerFlash {

    0%,
    100% {
        filter: grayscale(100%);
        opacity: 0.4;
        transform: scale(1);
    }

    15%,
    35% {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
}


/* --- Services Enhanced --- */
.services-enhanced {
    padding: 110px 0;
    background: #fff;
}

.services-hot-section {
    padding-bottom: 50px;
    background: #fdfdfd;
}

.service-card {
    background: white;
    border: 1px solid #f0f0f0;
    /* Softer border */
    border-radius: 24px;
    /* More rounded */
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Minimal initial shadow */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    /* Beautiful soft shadow on hover */
    border-color: transparent;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
}

.service-amount {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(202, 87, 3, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.service-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

/* Apply Button on Card (Arrow) */
.service-apply-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.8) rotate(-20deg);
    transition: all 0.4s ease;
    z-index: 10;
    box-shadow: 0 8px 15px rgba(202, 87, 3, 0.25);
    border: none;
    cursor: pointer;
    text-decoration: none;
    /* For A tag */
}

/* Ensure hovered state shows button correctly */
.service-card:hover .service-apply-btn {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* If the user is tabbing/accessible, make sure it shows on focus too if possible, but hover is primary request */

/* Hot Service Card Styling - Subtle distinction */
.hot-service-card {
    border: 1px solid rgba(202, 87, 3, 0.2);
    background: linear-gradient(to bottom, #fff 0%, #fffcf8 100%);
}

.hot-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

/* Badges moved to main code as requested, CSS removed */
.hot-badge {
    display: none;
}

/* --- Testimonials Enhanced --- */
.testimonials-enhanced {
    background: #f9f9f9;
}

.testimonial-card-full {
    border-radius: 20px;
    overflow: hidden;
    margin: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.4;
    filter: grayscale(100%);
    transform: scale(0.9);
}

/* Active State for Testimonials (Slick) */
.slick-center .testimonial-card-full,
.slick-current .testimonial-card-full {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Footer Enhanced --- */
.footer-enhanced {
    background-color: var(--color-dark);
    color: white;
    padding: 80px 0 30px;
    font-family: var(--font-body);
}

.footer-enhanced h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-enhanced h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-enhanced a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-enhanced a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #aaa;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.disclaimer-box {
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* --- Contact Page Form Styling --- */
/* --- Contact Page Form Styling --- */
.contact-form-premium {
    background: #ffffff;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Subtle top accent */
.contact-form-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.bg-theme .contact-form-premium {
    background: #ffffff;
}

.contact-form-premium .consult-form__control {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 1rem 1.15rem;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
    font-size: 0.95rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form-premium .consult-form__control:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(230, 95, 8, 0.45), 0 14px 32px rgba(230, 95, 8, 0.2);
    transform: translateY(-1px);
}

.contact-form-premium .consult-form__select {
    background-image: url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4.5 7L9 11.5L13.5 7" stroke="%23484f63" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 18px;
    padding-right: 3rem;
    color: #0f172a !important;
}

.contact-form-premium select.consult-form__control.consult-form__select {
    color: #0f172a !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #0f172a !important;
}

.contact-form-premium .consult-form__select option {
    color: #0f172a !important;
    background: #ffffff;
}

.contact-form-premium .consult-form__select:required:invalid {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

.contact-form-premium .consult-form__select:invalid {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

.contact-form-premium .consult-form__select option[disabled] {
    color: rgba(15, 23, 42, 0.55);
}

.contact-form-premium .consult-form__group {
    margin-bottom: 1rem;
}

.contact-form-premium .consult-form__submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7a18 0%, #ca5703 100%);
    box-shadow: 0 22px 40px rgba(202, 87, 3, 0.35);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.35s ease;
}

.contact-form-premium .consult-form__submit:hover,
.contact-form-premium .consult-form__submit:focus {
    transform: translateY(-2px);
    box-shadow: 0 28px 55px rgba(202, 87, 3, 0.45);
    filter: saturate(1.05);
}

.contact-form-premium .consult-form__submit svg {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form-premium .consult-form__submit:hover svg {
    transform: translateX(2px);
}

/* Override inputs to match homepage popup with better spacing */
.contact-form-premium input:not(.consult-form__control),
.contact-form-premium textarea,
.contact-form-premium select:not(.consult-form__control) {
    width: 100%;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    /* Matching homepage popup */
    padding: 18px 20px;
    background: #fdfdfd;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
    /* Subtle definition */
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #333;
    margin-bottom: 25px;
}

.contact-form-premium input:not(.consult-form__control):focus,
.contact-form-premium textarea:focus,
.contact-form-premium select:not(.consult-form__control):focus {
    outline: none;
    background-color: #fff;
    border-color: transparent;
    box-shadow: inset 0 0 0 2px rgba(202, 87, 3, 0.45), 0 14px 32px rgba(202, 87, 3, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Gradient Button */
.contact-form-premium button:not(.consult-form__submit) {
    width: 100%;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7a18 0%, #ca5703 100%);
    box-shadow: 0 15px 30px rgba(202, 87, 3, 0.35);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form-premium button:not(.consult-form__submit)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ca5703 0%, #ff7a18 100%);
    /* Reverse gradient */
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.contact-form-premium button:not(.consult-form__submit):hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(202, 87, 3, 0.45);
}

.contact-form-premium button:not(.consult-form__submit):hover::after {
    opacity: 1;
}

/* --- Careers & Blogs --- */
.career-card {
    background: white;
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.career-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.career-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.blog-summary {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- How We Work Enhanced --- */
.process-enhanced {
    position: relative;
    padding: 50px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-icon-box {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon-box {
    background: var(--color-primary);
}

.process-step:hover .process-icon-box img {
    filter: brightness(0) invert(1);
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.process-line {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

@media(max-width: 991px) {
    .process-line {
        display: none;
    }
}

/* --- Service Card V2 (Global Design) --- */
.service-card-new {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.service-card-new:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(12, 12, 12, 0.98) 100%);
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(202, 87, 3, 0.35);
}

.service-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(202, 87, 3, 0.12), transparent 55%),
        radial-gradient(circle at 80% 60%, rgba(255, 122, 24, 0.10), transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.service-card-new:hover::before {
    opacity: 1;
}

.services-enhanced .service-card-new {
    backdrop-filter: blur(8px);
}

.service-card-new.is-explore-card {
    background: linear-gradient(135deg, rgba(202, 87, 3, 0.08) 0%, rgba(255, 122, 24, 0.06) 100%);
    border-color: rgba(202, 87, 3, 0.22);
}

.service-card-new.is-explore-card .sc-amount {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.service-card-new.is-explore-card:hover .sc-amount {
    color: var(--color-primary);
}

.service-card-new.is-explore-card:hover {
    background: linear-gradient(135deg, rgba(202, 87, 3, 0.12) 0%, rgba(255, 122, 24, 0.10) 100%);
    color: inherit;
    box-shadow: 0 28px 60px rgba(202, 87, 3, 0.18);
}

.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.sc-tag {
    background: #f4f4f4;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.service-card-new:hover .sc-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.sc-icon-box {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.sc-icon-box i {
    color: var(--color-dark);
    font-size: 14px;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.service-card-new:hover .sc-icon-box {
    background: var(--color-primary);
    transform: scale(1.1);
}

.service-card-new:hover .sc-icon-box i {
    color: #ffffff;
    transform: rotate(0deg);
}

.sc-amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #000000;
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s;
}

.service-card-new:hover .sc-amount {
    color: #ffffff;
}

.sc-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    transition: color 0.3s;
}

.service-card-new:hover .sc-content h4 {
    color: #ffffff;
}

.sc-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0px;
    transition: color 0.3s;
}

.service-card-new:hover .sc-content p {
    color: #aaaaaa;
}

/* --- Hero Pattern --- */
.hero-pattern-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    animation: rotatePattern 120s linear infinite;
}

@keyframes rotatePattern {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Process Steps (Large Numbers) --- */
.process-step-new {
    text-align: left;
    padding: 26px 24px;
    position: relative;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    overflow: hidden;
}

.process-step-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(202, 87, 3, 0.10), transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(255, 122, 24, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.process-step-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.10);
    border-color: rgba(202, 87, 3, 0.28);
}

.process-step-new:hover::before {
    opacity: 1;
}

.ps-number {
    font-size: 4.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ps-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.ps-text {
    color: rgba(15, 23, 42, 0.68);
    font-size: 0.96rem;
    line-height: 1.65;
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.floating-contact a {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.floating-contact a i {
    font-size: 20px;
    line-height: 1;
}

.floating-contact__call {
    background: #0f172a;
}

.floating-contact__whatsapp {
    background: #0f172a;
}

.floating-contact__call i {
    color: var(--color-primary);
}

.floating-contact__whatsapp i {
    color: #25D366;
}

.floating-contact__call:hover,
.floating-contact__whatsapp:hover {
    background: #0b0f1a;
}

@media (max-width: 575.98px) {
    .floating-contact {
        right: 12px;
        bottom: 66px;
        gap: 8px;
    }

    .floating-contact a {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .floating-contact a i {
        font-size: 18px;
    }
}