



        .service-showcase-wrapper {
            max-width: 1500px;
            margin: 0 auto;
            background: linear-gradient(135deg, #fefefe, #054877);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .dual-column-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .service-details-section {
            z-index: 2;
        }

        .package-inclusion-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .primary-service-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .service-value-proposition {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 400px;
        }

        .cta-start-button {
            background-color: #1a252f;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-start-button:hover {
            background-color: #2c3e50;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-start-button::after {
            content: '▶';
            font-size: 12px;
        }

        .interactive-map-widget {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .map-navigation-header {
            background: #f8f9fa;
            padding: 15px 20px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .google-maps-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .location-search-input {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 15px;
            margin: 15px 20px;
            font-size: 14px;
            width: calc(100% - 40px);
        }

        .map-display-area {
            height: 300px;
            background: linear-gradient(45deg, #e3f2fd, #bbdefb);
            position: relative;
            overflow: hidden;
        }

        .business-location-marker {
            position: absolute;
            width: 30px;
            height: 30px;
            background: #dc3545;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            top: 50%;
            left: 50%;
            margin: -15px 0 0 -15px;
            cursor: pointer;
            animation: location-pulse 2s infinite;
        }

        .business-location-marker::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: white;
            border-radius: 50%;
            top: 7px;
            left: 7px;
        }

        @keyframes location-pulse {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) rotate(-45deg);
            }
            40% {
                transform: translateY(-10px) rotate(-45deg);
            }
            60% {
                transform: translateY(-5px) rotate(-45deg);
            }
        }

        .business-info-tooltip {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            max-width: 200px;
            font-size: 12px;
        }

        .company-name-display {
            font-weight: 600;
            color: #1a73e8;
            margin-bottom: 5px;
        }

        .business-address-text {
            color: #666;
            line-height: 1.4;
        }

        .get-directions-link {
            color: #1a73e8;
            text-decoration: none;
            font-size: 11px;
            margin-top: 8px;
            display: inline-block;
        }

        .map-zoom-controls {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .zoom-control-button {
            width: 35px;
            height: 35px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            color: #666;
        }

        .zoom-control-button:hover {
            background: #f5f5f5;
        }

        .google-branding-logo {
            position: absolute;
            bottom: 10px;
            left: 10px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .dual-column-layout {
                grid-template-columns: 1fr;
                gap: 30px;
                /* background-color: #1a73e8; */
            }
            
            .primary-service-heading {
                font-size: 2.2rem;
                                 /* background-color: #e8661a; */

            }
            
            .service-showcase-wrapper {
                padding: 20px;
                margin-top: 100px;

                 /* background-color: #e8661a; */
            }
            
        }