
        .pristine-v9 {
            background: #ffffff;
            padding: 80px 0;
            color: #2d3748;
        }

        .v9-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .v9-content h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a2c3d;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .v9-content h2 span {
            color: #3E6695;
        }

        .v9-subtitle {
            font-size: 1.2rem;
            color: #718096;
            margin-bottom: 45px;
        }

        /* Contact Cards */
        .v9-card {
            display: flex;
            align-items: center;
            background: #f8fafc;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 25px;
            border: 1px solid #edf2f7;
            transition: all 0.3s ease;
        }

        .v9-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(62, 102, 149, 0.1);
            border-color: #3E6695;
        }

        .v9-icon-wrapper {
            width: 65px;
            height: 65px;
            background: #3E6695;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-right: 25px;
            box-shadow: 0 8px 15px rgba(62, 102, 149, 0.2);
        }

        .v9-info h5 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #3E6695;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .v9-info p, .v9-info a {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a2c3d;
            text-decoration: none;
            margin: 0;
        }

        /* Satellite Map */
        .v9-map-container {
            height: 600px;
            border-radius: 40px;
            overflow: hidden;
            border: 10px solid #f1f5f9;
            position: relative;
        }

        .v9-map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .v9-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #3E6695;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 5;
        }

        /* Call Buttons */
        .v9-actions {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .btn-v9-call {
            background: #3E6695;
            color: white;
            padding: 18px 35px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            flex: 1;
            text-align: center;
            transition: 0.3s;
        }

        .btn-v9-whatsapp {
            background: #25D366;
            color: white;
            padding: 18px 35px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            flex: 1;
            text-align: center;
            transition: 0.3s;
        }

        .btn-v9-call:hover, .btn-v9-whatsapp:hover {
            opacity: 0.9;
            transform: scale(1.02);
            color: white;
        }

        @media (max-width: 991px) {
            .v9-grid { grid-template-columns: 1fr; }
            .v9-map-container { height: 400px; }
            .v9-content h2 { font-size: 2.8rem; }
        }

