/* Hero Section for solution Shippers */
        .hero-section-solution {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .dedicated-solutions-promo {
            width: min(100% - 30px, 1140px);
            margin: 12px auto 34px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(22, 42, 58, 0.34);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
        }

        .dedicated-solutions-copy {
            min-width: 220px;
        }

        .dedicated-solutions-eyebrow {
            display: block;
            margin-bottom: 4px;
            color: var(--samaritanYellow);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .dedicated-solutions-copy p {
            margin: 0;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.35;
        }

        .dedicated-solutions-links {
            display: grid;
            grid-template-columns: repeat(3, minmax(120px, 1fr));
            gap: 8px;
            width: min(100%, 510px);
        }

        .dedicated-solution-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 11px 13px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 0.88rem;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }

        .dedicated-solution-link i {
            color: var(--samaritanYellow);
            font-size: 0.9rem;
            transition: transform 0.25s ease;
        }

        .dedicated-solution-link:hover,
        .dedicated-solution-link:focus-visible {
            border-color: var(--samaritanYellow);
            background: rgba(255, 246, 18, 0.1);
            color: #fff;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .dedicated-solution-link:hover i,
        .dedicated-solution-link:focus-visible i {
            transform: translate(2px, -2px);
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.35s ease;
            backdrop-filter: blur(10px);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .hero-card-link {
            color: inherit;
            display: block;
            text-decoration: none;
        }

        .hero-card-link:hover,
        .hero-card-link:focus {
            color: inherit;
            text-decoration: none;
        }

        .hero-card-link-indicator {
            position: absolute;
            right: 18px;
            bottom: 16px;
            color: var(--samaritanYellow);
            font-size: 20px;
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .hero-card:hover .hero-card-link-indicator,
        .hero-card:focus .hero-card-link-indicator {
            transform: translateX(4px);
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .hero-card:hover::before {
            left: 100%;
        }

        .hero-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--samaritanYellow), var(--samaritanGreen));
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 28px;
            color: #1a1a1a;
        }

        .hero-card:hover .hero-card-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(136, 247, 7, 0.3);
        }

        .hero-card h3 {
            color: #fff;
            transition: color 0.3s ease;
        }

        .hero-card:hover h3 {
            color: var(--samaritanYellow);
        }

        .hero-card-description {
            color: #b1c0cd;
            line-height: 1.5;
            margin: 0;
            transition: color 0.3s ease;
        }

        .hero-card:hover .hero-card-description {
            color: #e0e8f0;
        }

        .drawback-choice-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(18, 30, 42, 0.38);
            z-index: 9999;
        }

        .drawback-choice-modal.is-open {
            display: flex;
        }

        .drawback-choice-dialog {
            position: relative;
            width: min(100%, 560px);
            background: #f5f8fb;
            border: 1px solid rgba(15, 31, 44, 0.08);
            border-radius: 18px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
            padding: 30px 24px 22px;
            color: var(--darkSamaritan, #1c2b3a);
        }

        .drawback-choice-dialog h3 {
            color: var(--samaritan, #1d4d39);
        }

        .drawback-choice-dialog p {
            color: rgba(28, 43, 58, 0.8);
        }

        .drawback-choice-close {
            position: absolute;
            top: 14px;
            right: 14px;
            border: 0;
            background: transparent;
            color: rgba(28, 43, 58, 0.7);
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
        }

        .drawback-choice-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .drawback-choice-actions .choice-btn {
            min-width: 180px;
            padding: 12px 22px;
            border-radius: 999px;
            font-weight: 700;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            background: linear-gradient(135deg, var(--samaritanYellow), #d9ff78);
            border: 1px solid rgba(8, 83, 59, 0.15);
            color: var(--darkSamaritan, #1c2b3a);
            box-shadow: 0 8px 20px rgba(69, 124, 34, 0.12);
        }

        .drawback-choice-actions .choice-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(69, 124, 34, 0.18);
            text-decoration: none;
            background: linear-gradient(135deg, #f9d32c, #f3c40f);
        }

        .drawback-choice-actions .choice-btn:last-child {
            background: var(--samaritan, #1d4d39);
            border-color: rgba(25, 60, 46, 0.15);
            color: #ffffff;
        }

        .drawback-choice-actions .choice-btn:last-child:hover {
            background: linear-gradient(135deg, #0d6d4d, #14906c);
            color: #ffffff;
            box-shadow: 0 12px 24px rgba(13, 109, 77, 0.25);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .dedicated-solutions-promo {
                align-items: stretch;
                flex-direction: column;
                gap: 16px;
                margin-top: 8px;
            }

            .dedicated-solutions-links {
                width: 100%;
            }

            .hero-cards-grid {
                gap: 20px;
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }

            .hero-card {
                padding: 25px 15px;
            }

            .hero-card-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

        }

        @media (max-width: 480px) {
            .dedicated-solutions-promo {
                width: min(100% - 20px, 1140px);
                padding: 16px;
            }

            .dedicated-solutions-links {
                grid-template-columns: 1fr;
            }

            .hero-section-solution {
                padding: 40px 0;
            }

            .hero-content {
                margin-bottom: 30px;
            }

            .hero-cards-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .hero-card {
                padding: 20px 15px;
            }
        }